copyWith method

ChatQueuedPrompt copyWith({
  1. bool? guide,
})

Implementation

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