Files
one-ai/mobile/app/lib/components/conversation_thread/chat.dart
T

9 lines
203 B
Dart

class Chat {
final String content;
final bool role;
// Most basic chat, text from server or from user.
Chat(this.content, this.role);
// TODO: Overload constructors to allow for multimedia.
}