marginLeft method

DefineMRowModifier marginLeft(
  1. double value
)

Implementation

DefineMRowModifier marginLeft(double value) {
  return this.copyWith(
    valueMargin: (this.valueMargin ?? EdgeInsets.zero).copyWith(left: value),
  );
}