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