FunctionParamConfig constructor

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

Implementation

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