value property
Gets the value of the JSON boolean field.
Returns:
- The boolean value, or
false
if the value is null.
Implementation
@override
bool get value {
return rawValue ?? false;
}
set
value
(dynamic value)
inherited
Sets the value of the field.
Implementation
set value(dynamic value) {
rawValue = value;
}