GemParameter.withString constructor
Creates a GemParameter with a ValueType.string value type
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,
);
}