DaravelRoute constructor

DaravelRoute(
  1. String method,
  2. String path,
  3. Function? handler, {
  4. List<DaravelRoute> routes = const [],
})

Implementation

DaravelRoute(
  this.method,
  this.path,
  this.handler, {
  this.routes = const [],
});