9 lines
201 B
Dart
9 lines
201 B
Dart
class Chat {
|
|
late String message;
|
|
late bool isMe;
|
|
|
|
// Most basic chat, text from server or from user.
|
|
Chat(this.message, this.isMe);
|
|
|
|
// TODO: Overload constructors to allow for multimedia.
|
|
} |