Item View

This commit is contained in:
2021-03-20 13:36:49 +02:00
parent 7396a9a0a4
commit 61180a7fe4
15 changed files with 665 additions and 21 deletions
+21
View File
@@ -0,0 +1,21 @@
class KiosqueUser {
final String uid;
final String displayName;
final String city;
final String country;
final String phoneNumber;
final String emailAddress;
final String gender;
final String profileUrl;
KiosqueUser({
this.uid,
this.displayName,
this.city,
this.country,
this.phoneNumber,
this.emailAddress,
this.gender,
this.profileUrl,
});
}