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