post

External Documentation

void post(

  1. String path,
  2. JSFunction handler
)

Register POST route

Implementation

void post(String path, JSFunction handler) {
  final postFn = this['post']! as JSFunction;
  postFn.callAsFunction(this, path.toJS, handler);
}