7 lines
138 B
Dart
7 lines
138 B
Dart
|
class AuthUser {
|
||
|
String name;
|
||
|
String email;
|
||
|
String uid;
|
||
|
|
||
|
AuthUser({required this.name, required this.email, required this.uid});
|
||
|
}
|