implemented basic chat bubbles generated from a list.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
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.
|
||||
}
|
||||
Reference in New Issue
Block a user