bottom property

double? get bottom

Implementation

double? get bottom => _bottom?.get();
set bottom (dynamic v)

Implementation

set bottom(dynamic v) {
  if (_bottom != null) {
    _bottom!.set(v);
  } else if (v != null) {
    if (isPercent(v)) {
      // _bottomIsPercent = true;
      v = v.split("%")[0];
    }
    _bottom = DoubleObservable(Binding.toKey(id, 'bottom'), v,
        scope: scope, listener: onPropertyChange);
  }
}