shadowy property

double? get shadowy

Implementation

double? get shadowy => _shadowy?.get() ?? 2;
set shadowy (dynamic v)

Implementation

set shadowy(dynamic v) {
  if (_shadowy != null) {
    _shadowy!.set(v);
  } else if (v != null) {
    _shadowy = DoubleObservable(Binding.toKey(id, 'shadowy'), v,
        scope: scope, listener: onPropertyChange);
  }
}