GemParameter.withReal constructor
Creates a GemParameter with a ValueType.real value type
Implementation
factory GemParameter.withReal({
required final String key,
required final double value,
final String? name,
}) {
return GemParameter(
key: key,
type: ValueType.real,
value: value,
name: name,
);
}