get method

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

Implementation

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