updateBottomPaddingHeight method

void updateBottomPaddingHeight(
  1. double newValue
)

Implementation

void updateBottomPaddingHeight(double newValue) {
  if (newValue > maxBottomPaddingHeight.value &&
      newValue < _maxBottomPaddingHeightValueDef) {
    maxBottomPaddingHeight.value = newValue;
    box.write(_maxBottomPaddingHeightKey, maxBottomPaddingHeight.value);
  }
}