mirror of
https://github.com/Iconica-Development/flutter_login_widget.git
synced 2025-05-19 13:43:44 +02:00
10 lines
139 B
Dart
10 lines
139 B
Dart
class LoginUser {
|
|
LoginUser({
|
|
this.displayName = '',
|
|
this.email = '',
|
|
});
|
|
|
|
final String displayName;
|
|
final String email;
|
|
}
|