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