Skip to content

Instantly share code, notes, and snippets.

@ibtesam123
Created May 11, 2020 10:48
Show Gist options
  • Save ibtesam123/f8ed14e6d9fc18d6d9aa8c42161430be to your computer and use it in GitHub Desktop.
Save ibtesam123/f8ed14e6d9fc18d6d9aa8c42161430be to your computer and use it in GitHub Desktop.
Realtime Chat-II
class Message{
final String text;
final String senderID;
final String receiverID;
Message(this.text,this.senderID,this.receiverID);
}
class User{
String name;
String chatID;
User(this.name,this.chatID);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment