copyWith method

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

Implementation

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