copyWith method

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

Implementation

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