asString method
Decode value to string.
Implementation
String asString() {
final value = _value;
return value != null
? const Utf8Codec().decode(value)
: defaultValueForString;
}
Decode value to string.
String asString() {
final value = _value;
return value != null
? const Utf8Codec().decode(value)
: defaultValueForString;
}