030c3eb428
* app updated * readme updated * rename base folder * update chatty's readme * move apps to packages dir * update repo overview Co-authored-by: diegoveloper <diego.velasquez.lopez@gmail.com>
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;
|
|
}
|