paddingBottom method
Implementation
DefineMStackModifier paddingBottom(double value) {
return this.copyWith(
valuePadding:
(this.valuePadding ?? EdgeInsets.zero).copyWith(bottom: value),
);
}
DefineMStackModifier paddingBottom(double value) {
return this.copyWith(
valuePadding:
(this.valuePadding ?? EdgeInsets.zero).copyWith(bottom: value),
);
}