copyWith method

  1. @override
RichTextPlain copyWith({
  1. String? text,
})
override

Implementation

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