stringAttribute method
StringAttribute
stringAttribute({
- required String key,
- String missValue = "",
- AttributeTransform<
String> ? transform,
Implementation
StringAttribute stringAttribute({required String key, String missValue = "", AttributeTransform<String>? transform}) {
return StringAttribute(key: key, provider: this, missValue: missValue, transform: transform);
}