copyWith method

  1. @override
RichTexts copyWith({
  1. List<RichText>? texts,
})
override

Implementation

@override
RichTexts copyWith({
  List<RichText>? texts,
}) =>
    RichTexts(
      texts: texts ?? this.texts,
    );