marginRight method

DefineMTextFieldModifier marginRight(
  1. double value
)

Implementation

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