onPrimary property

Color? get onPrimary

Implementation

Color? get onPrimary => _onPrimary?.get();
set onPrimary (dynamic v)

Implementation

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