bd6bb66279
* app updated * readme updated * rename base folder * update chatty's readme Co-authored-by: Neevash Ramdial <mail@neevash.dev>
7 lines
133 B
Dart
7 lines
133 B
Dart
class ChatUser {
|
|
const ChatUser({this.name, this.image, this.id});
|
|
final String name;
|
|
final String image;
|
|
final String id;
|
|
}
|