9 lines
203 B
Dart
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.
|
|
} |