lineThrough method

DefineMTextModifier lineThrough()

Implementation

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