insetLeft property

double insetLeft
inherited

Left inset value.

Implementation

double get insetLeft => _insetLeft;
void insetLeft=(double value)
inherited

Change the _insetLeft field value. insetLeftChanged will be invoked only if the field's value has changed.

Implementation

set insetLeft(double value) {
  if (_insetLeft == value) {
    return;
  }
  double from = _insetLeft;
  _insetLeft = value;
  if (hasValidated) {
    insetLeftChanged(from, value);
  }
}