Created
May 11, 2020 10:48
-
-
Save ibtesam123/f8ed14e6d9fc18d6d9aa8c42161430be to your computer and use it in GitHub Desktop.
Realtime Chat-II
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Message{ | |
final String text; | |
final String senderID; | |
final String receiverID; | |
Message(this.text,this.senderID,this.receiverID); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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