horizontal property

bool get horizontal

Implementation

bool get horizontal => _horizontal?.get() ?? false;
set horizontal (dynamic v)

Implementation

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