underLine method

DefineMTextModifier underLine()

Implementation

DefineMTextModifier underLine() {
  final DefineMTextModifier newModifierValue = this.copyWith(
      valueStyle:
          this.valueStyle.copyWith(decoration: TextDecoration.underline));
  return newModifierValue;
}