FunctionParam constructor
- required String? name,
- required FunctionParamType type,
- bool? indexed,
Implementation
const FunctionParam({
required this.name,
required this.type,
this.indexed,
});
const FunctionParam({
required this.name,
required this.type,
this.indexed,
});