copyWith method
Implementation
ChatQueuedPrompt copyWith({bool? guide}) {
return ChatQueuedPrompt(
id: id,
text: text,
attachments: attachments,
createdAt: createdAt,
guide: guide ?? this.guide,
);
}
ChatQueuedPrompt copyWith({bool? guide}) {
return ChatQueuedPrompt(
id: id,
text: text,
attachments: attachments,
createdAt: createdAt,
guide: guide ?? this.guide,
);
}