marginBottom method

DefineMAddButtonModifier marginBottom(
  1. double value
)

Implementation

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