printRoutes method

void printRoutes()

Implementation

void printRoutes() {
  Logger.staticInfo('--- Registered Routes ---');
  for (var r in _allRoutes) {
    Logger.staticInfo('${r.method.padRight(7)} ${r.path} ${r.name != null ? "[${r.name}]" : ""}');
  }
  Logger.staticInfo('------------------------');
}