defaultValue property
Implementation
@override
dynamic get defaultValue => null;
set
defaultValue
(dynamic v)
inherited
Implementation
set defaultValue(dynamic v) {
if (_defaultValue != null) {
_defaultValue!.set(v);
} else {
if (v != null) {
_defaultValue = StringObservable(null, v, scope: scope);
}
}
}