background property

Color? get background

Implementation

Color? get background => _background?.get();
set background (dynamic v)

Implementation

set background(dynamic v) {
  if (_background != null) {
    _background!.set(v);
  } else if (v != null) {
    _background = ColorObservable(Binding.toKey('background'), v,
        scope: scope, listener: onPropertyChange);
  }
}