insetRight property

double insetRight
inherited

Right inset value.

Implementation

double get insetRight => _insetRight;
void insetRight=(double value)
inherited

Change the _insetRight field value. insetRightChanged will be invoked only if the field's value has changed.

Implementation

set insetRight(double value) {
  if (_insetRight == value) {
    return;
  }
  double from = _insetRight;
  _insetRight = value;
  if (hasValidated) {
    insetRightChanged(from, value);
  }
}