ParentRoute constructor
ParentRoute({
- required String path,
- required List<
HRoute> routes, - FilterConfig filterConfig = const FilterConfig([]),
Implementation
ParentRoute({
required super.path,
required super.routes,
super.filterConfig,
}) : super(
method: const HttpMethod(''),
handler: (request) => ResponseEntity.ok(),
);