stringAttribute method

StringAttribute stringAttribute({
  1. required String key,
  2. String missValue = "",
  3. AttributeTransform<String>? transform,
})

Implementation

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