registerRoute method

void registerRoute (String method, String route, Schema schema, dynamic action(RequestContext req, ResponseContext res))

Registers a route in HTTP endpoint.

  • method HTTP method: 'get', 'head', 'post', 'put', 'delete'
  • route a command route. Base route will be added to this route
  • schema a validation schema to validate received parameters.
  • action an action function that is called when operation is invoked.