marginRight method

DefineMTextModifier marginRight(
  1. double value
)

Implementation

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