shadowY property

double get shadowY

Implementation

double get shadowY => _shadowY?.get() ?? 4;
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);
  }
}