call method

void call(
  1. Request req,
  2. Response res,
  3. Function next
)

Implementation

void call(Request req, Response res, Function next) async {
  COLORS.c('''
  req to => ${req.ioRequest.uri.path},
  method => ${req.method}
  ''');
  return await next();
}