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