ParentRoute constructor

ParentRoute({
  1. required String path,
  2. required List<HRoute> routes,
  3. FilterConfig filterConfig = const FilterConfig([]),
})

Implementation

ParentRoute({
  required super.path,
  required super.routes,
  super.filterConfig,
}) : super(
        method: const HttpMethod(''),
        handler: (request) => ResponseEntity.ok(),
      );