insetBottom property

double insetBottom
inherited

Bottom inset value.

Implementation

double get insetBottom => _insetBottom;
void insetBottom=(double value)
inherited

Change the _insetBottom field value. insetBottomChanged will be invoked only if the field's value has changed.

Implementation

set insetBottom(double value) {
  if (_insetBottom == value) {
    return;
  }
  double from = _insetBottom;
  _insetBottom = value;
  if (hasValidated) {
    insetBottomChanged(from, value);
  }
}