copyWith method

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

Implementation

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