call method

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

Implementation

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