GemParameter.withString constructor
Creates a string GemParameter.
Parameters
key: Unique parameter identifier.value: String value to store.name: Optional localized display name.
Returns
- A new GemParameter with type set to ValueType.string.
Implementation
factory GemParameter.withString({
required final String key,
required final String value,
final String? name,
}) {
return GemParameter(
key: key,
type: ValueType.string,
value: value,
name: name,
);
}