RouteConfig constructor
const
RouteConfig({
- required String name,
- required String pathName,
- required MapEntry<
String, String> className, - String? parentClassName,
- bool fullscreenDialog = false,
- bool maintainState = true,
- String? returnType,
- List<
RouteParamConfig> parameters = const [], - bool hasWrapper = false,
- List<
RouteConfig> children = const [], - bool hasConstConstructor = false,
- Set<
String> imports = const {},
Implementation
const RouteConfig({
required this.name,
required this.pathName,
required this.className,
this.parentClassName,
this.fullscreenDialog = false,
this.maintainState = true,
this.returnType,
this.parameters = const [],
this.hasWrapper = false,
this.children = const [],
this.hasConstConstructor = false,
this.imports = const {},
});