copyWith method
Implementation
SearchQuote copyWith({
FormattedText? text,
FormattedText? quote,
int? quotePosition,
}) => SearchQuote(
text: text ?? this.text,
quote: quote ?? this.quote,
quotePosition: quotePosition ?? this.quotePosition,
);