RouteParamConfig constructor

RouteParamConfig({
  1. required ResolvedType type,
  2. required String name,
  3. bool isOptional = false,
  4. bool isNamed = false,
  5. String? alias,
  6. bool isPositional = false,
  7. bool isRequired = false,
  8. bool? isPathParam,
  9. bool? isQueryParam,
  10. String? defaultValueCode,
})

Implementation

RouteParamConfig({
  required this.type,
  required this.name,
  this.isOptional = false,
  this.isNamed = false,
  this.alias,
  this.isPositional = false,
  this.isRequired = false,
  this.isPathParam,
  this.isQueryParam,
  this.defaultValueCode,
});