copyWith method

  1. @override
RichTextStrikethrough copyWith({
  1. RichText? text,
})
override

Implementation

@override
RichTextStrikethrough copyWith({
  RichText? text,
}) =>
    RichTextStrikethrough(
      text: text ?? this.text,
    );