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