stringValue property
String?
get
stringValue
Implementation
String? get stringValue {
final value = this.value;
return value is String ? value : null;
}
String? get stringValue {
final value = this.value;
return value is String ? value : null;
}