post

External Documentation

void post(

  1. String path,
  2. JSFunction handler
)

Register POST route

Implementation

void post(String path, JSFunction handler) =>
    _getMethod('post').callAsFunction(this, path.toJS, handler);