onSecondary property

Color? get onSecondary

Implementation

Color? get onSecondary => _onSecondary?.get();
set onSecondary (dynamic v)

Implementation

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