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