postWithMiddleware
void
postWithMiddleware(
POST with middleware chain
Implementation
void postWithMiddleware(String path, List<JSFunction> handlers) {
final jsHandlers = handlers.toJS;
final postFn = (this as JSObject)['post'] as JSFunction;
postFn.callAsFunction(this, path.toJS, jsHandlers);
}