marginRight property

double marginRight
inherited

Right margin value.

Implementation

double get marginRight => _marginRight;
void marginRight=(double value)
inherited

Change the _marginRight field value. marginRightChanged will be invoked only if the field's value has changed.

Implementation

set marginRight(double value) {
  if (_marginRight == value) {
    return;
  }
  double from = _marginRight;
  _marginRight = value;
  if (hasValidated) {
    marginRightChanged(from, value);
  }
}