delete

External Documentation

void delete(

  1. String path,
  2. JSFunction handler
)

Register DELETE route

Implementation

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