bottomGoneMargin method

ConstraintId bottomGoneMargin(
  1. double margin
)

Implementation

ConstraintId bottomGoneMargin(double margin) {
  if (_isMarginSet()) {
    _bottomGoneMargin = margin;
    return this;
  } else {
    return _copy().._bottomGoneMargin = margin;
  }
}