copyWith method
Implementation
QueryPrediction copyWith({
FormattableText? text,
StructuredFormat? structuredFormat,
}) {
return QueryPrediction(
text: text ?? this.text,
structuredFormat: structuredFormat ?? this.structuredFormat,
);
}