marginTop method

DefineMColumnModifier marginTop(
  1. double value
)

Implementation

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