secondaryContainer property
Color?
get
secondaryContainer
Implementation
Color? get secondaryContainer => _secondaryContainer?.get();
set
secondaryContainer
(dynamic v)
Implementation
set secondaryContainer(dynamic v) {
if (_secondaryContainer != null) {
_secondaryContainer!.set(v);
} else if (v != null) {
_secondaryContainer = ColorObservable(
Binding.toKey('secondarycontainer'), v,
scope: scope, listener: onPropertyChange);
}
}