class User {
   String email;
   String password;
   int customerId;
   String firebaseUid;


  User({this.customerId, this.email, this.password});


   Map<String, dynamic> toJson() =>
       {
         "username": email,
         "password": password,
         "firebaseUid": firebaseUid,
       };
}