background property
String?
get
background
Implementation
String? get background => _background?.get();
set
background
(dynamic v)
Implementation
set background(dynamic v) {
if (_background != null)
_background!.set(v);
else if (v != null)
_background = StringObservable(Binding.toKey('background'), v, scope: scope, listener: onPropertyChange);
}