handle property

bool get handle

Implementation

bool get handle => _handle?.get() ?? false;
set handle (dynamic v)

Implementation

set handle(dynamic v) {
  if (_handle != null) {
    _handle!.set(v);
  } else if (v != null) {
    _handle = BooleanObservable(Binding.toKey(id, 'handle'), v,
        scope: scope, listener: onPropertyChange);
  }
}