paddingBottom method

DefineMTileModifier paddingBottom(
  1. double value
)

Implementation

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