copyWith method

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

Implementation

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