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