copyWith method

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

Implementation

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