UserAccount constructor

UserAccount({
  1. required String userId,
  2. String userFname = "",
  3. String userLname = "",
  4. String userEmail = "",
  5. String userPhone = "",
  6. String userAvatar = "",
  7. String userPassword = "",
  8. String orgName = "",
  9. String orgAddr1 = "",
  10. String orgAddr2 = "",
  11. String orgCity = "",
  12. String orgProvince = "",
  13. String orgCountry = "",
  14. String orgZip = "",
  15. String orgWeb = "",
  16. String orgEmail = "",
  17. String orgPhone = "",
})

Implementation

UserAccount({
  required this.userId,
  this.userFname = "",
  this.userLname = "",
  this.userEmail = "",
  this.userPhone = "",
  this.userAvatar = "",
  this.userPassword = "",
  this.orgName = "",
  this.orgAddr1 = "",
  this.orgAddr2 = "",
  this.orgCity = "",
  this.orgProvince = "",
  this.orgCountry = "",
  this.orgZip = "",
  this.orgWeb = "",
  this.orgEmail = "",
  this.orgPhone = "",
});