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. }