* app updated * readme updated * rename base folder * update chatty's readme Co-authored-by: Neevash Ramdial <[email protected]>
5 lines
59 B
Dart
5 lines
59 B
Dart
class AuthUser {
|
|
AuthUser(this.id);
|
|
final String id;
|
|
}
|