RouteConfig constructor

const RouteConfig({
  1. required String name,
  2. required String pathName,
  3. required MapEntry<String, String> className,
  4. String? parentClassName,
  5. bool fullscreenDialog = false,
  6. bool maintainState = true,
  7. String? returnType,
  8. List<RouteParamConfig> parameters = const [],
  9. bool hasWrapper = false,
  10. List<RouteConfig> children = const [],
  11. bool hasConstConstructor = false,
  12. 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 {},
});