FunctionParamConfig constructor
FunctionParamConfig({
- required ResolvedType returnType,
- required List<
RouteParamConfig> params, - required ResolvedType type,
- required String name,
- String? alias,
- bool isPositional = false,
- bool isRequired = false,
- bool? isPathParam = false,
- bool? isQueryParam = false,
- String? defaultValueCode,
- bool isOptional = false,
- 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,
});