value property
Gets the value of the JSON string field.
Returns:
- The string value, or a null string if the value is null.
Implementation
@override
String get value => rawValue ?? "";
set
value
(dynamic value)
inherited
Sets the value of the field.
Implementation
set value(dynamic value) {
rawValue = value;
}