marginBottom method

DefineMColumnModifier marginBottom(
  1. double value
)

Implementation

DefineMColumnModifier marginBottom(double value) {
  return this.copyWith(
    valueMargin:
        (this.valueMargin ?? EdgeInsets.zero).copyWith(bottom: value),
  );
}