get

External Documentation

void get(

  1. String path,
  2. JSFunction handler
)

Register GET route

Implementation

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