RouteEntry constructor

const RouteEntry({
  1. required String filePath,
  2. required String path,
  3. required HttpMethod? method,
  4. String? wildcardParam,
})

Creates a route entry.

Implementation

const RouteEntry({
  required this.filePath,
  required this.path,
  required this.method,
  this.wildcardParam,
});