tooltips property

bool? get tooltips

Implementation

bool? get tooltips => _tooltips?.get();
set tooltips (dynamic v)

Implementation

set tooltips(dynamic v) {
  if (_tooltips != null) {
    _tooltips!.set(v);
  } else if (v != null) {
    _tooltips =
        BooleanObservable(Binding.toKey(id, 'tooltips'), v, scope: scope);
  }
}