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