marginRight method

DefineMStackModifier marginRight(
  1. double value
)

Implementation

DefineMStackModifier marginRight(double value) {
  return this.copyWith(
    valueMargin: (this.valueMargin ?? EdgeInsets.zero).copyWith(right: value),
  );
}