defaultValue property

dynamic get defaultValue

Implementation

dynamic get defaultValue => _defaultValue?.get();
set defaultValue (dynamic v)

Implementation

set defaultValue(dynamic v)
{
  if (_defaultValue != null) {
    _defaultValue!.set(v);
  } else {
    if (v != null)
      _defaultValue = StringObservable(null, v, scope: scope);
  }
}