value property
String
get
value
Return the Variable String Object's value.
Implementation
String get value => _value;
set
value
(String? str)
Implementation
set value(String? str) {
_value = '';
if (str != null && str.isNotEmpty) {
final match = regExp.firstMatch(str);
if (match != null) {
_value = match.group(0)!.replaceAll("'", '');
}
}
}