horizontal property
double?
get
horizontal
Implementation
double? get horizontal => _horizontal?.get();
set
horizontal
(dynamic v)
Implementation
set horizontal(dynamic v) {
if (_horizontal != null) {
_horizontal!.set(v);
} else if (v != null) {
_horizontal = DoubleObservable(
Binding.toKey(id, 'horizontal'), v,
scope: scope, listener: onPropertyChange);
}
}