valueAsString property
String?
get
valueAsString
The value of the token as a string
Implementation
String? get valueAsString {
if (value is String) {
return value as String;
}
return null;
}
The value of the token as a string
String? get valueAsString {
if (value is String) {
return value as String;
}
return null;
}