marginBottom property

double marginBottom
inherited

Bottom margin value.

Implementation

double get marginBottom => _marginBottom;
void marginBottom=(double value)
inherited

Change the _marginBottom field value. marginBottomChanged will be invoked only if the field's value has changed.

Implementation

set marginBottom(double value) {
  if (_marginBottom == value) {
    return;
  }
  double from = _marginBottom;
  _marginBottom = value;
  if (hasValidated) {
    marginBottomChanged(from, value);
  }
}