UserModel constructor

UserModel({
  1. required int idx,
  2. required String email,
  3. required String firebaseUid,
  4. required String name,
  5. required String nickname,
  6. required String photoUrl,
  7. required int point,
  8. required String block,
  9. required String phoneNo,
  10. required String gender,
  11. required int birthdate,
  12. required String domain,
  13. required String countryCode,
  14. required String province,
  15. required String city,
  16. required String address,
  17. required String zipcode,
  18. required String provider,
  19. required String verifier,
  20. required int createdAt,
  21. required int updatedAt,
  22. required String sessionId,
  23. required String admin,
})

Implementation

UserModel({
  required this.idx,
  required this.email,
  required this.firebaseUid,
  required this.name,
  required this.nickname,
  required this.photoUrl,
  required this.point,
  required this.block,
  required this.phoneNo,
  required this.gender,
  required this.birthdate,
  required this.domain,
  required this.countryCode,
  required this.province,
  required this.city,
  required this.address,
  required this.zipcode,
  required this.provider,
  required this.verifier,
  required this.createdAt,
  required this.updatedAt,
  required this.sessionId,
  required this.admin,
});