unwrappedString property
String
get
unwrappedString
Implementation
String get unwrappedString {
return (this is String && (this as String).isEmpty) ||
this?.toString() == 'null'
? '-'
: this?.toString() ?? '-';
}