shadow property

String? get shadow

Implementation

String? get shadow => _shadow?.get();
set shadow (dynamic v)

Implementation

set shadow(dynamic v) {
  if (_shadow != null) {
    _shadow!.set(v);
  } else if (v != null) {
    _shadow = StringObservable(Binding.toKey('shadow'), v, scope: scope, listener: onPropertyChange);
  }
}