showBar property
bool
get
showBar
Implementation
bool get showBar => _showBar?.get() ?? true;
set
showBar
(dynamic v)
Implementation
set showBar(dynamic v) {
if (_showBar != null) {
_showBar!.set(v);
} else if (v != null) {
_showBar = BooleanObservable(Binding.toKey(id, 'bar'), v, scope: scope);
}
}