post method

void post(
  1. String path,
  2. OnReqCallback onRequest
)

Implementation

void post(String path, OnReqCallback onRequest) {
  _routes['POST']![path] = onRequest;
}