copyWith method

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

Implementation

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