copyWith method

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

Implementation

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