FunctionParamWithValue<T>.fromJson constructor
- Map map
Implementation
factory FunctionParamWithValue.fromJson(Map map) {
return FunctionParamWithValue(
value: map['value'],
name: map['name'],
indexed: map['indexed'] as bool? ?? false,
type: FunctionParamType.fromString(map['type']),
);
}