minWidth property

double? get minWidth

Implementation

double? get minWidth => _minWidth?.get();
set minWidth (dynamic v)

Implementation

set minWidth(dynamic v) {
  if (v != null) {
    if (isPercent(v)) {
      _minWidthPercentage = toDouble(v.split("%")[0]);
      v = null;
    } else {
      _minWidthPercentage = null;
    }
    if (_minWidth == null) {
      _minWidth = DoubleObservable(Binding.toKey(id, 'minWidth'), v,
          scope: scope, listener: onPropertyChange);
    } else if (v != null) {
      _minWidth!.set(v);
    }
  }
}