UserOrganization constructor

UserOrganization({
  1. required String userId,
  2. String orgName = "",
  3. String orgAddr1 = "",
  4. String orgAddr2 = "",
  5. String orgCity = "",
  6. String orgProvince = "",
  7. String orgCountry = "",
  8. String orgZip = "",
  9. String orgWeb = "",
  10. String orgEmail = "",
  11. String orgPhone = "",
})

Implementation

UserOrganization(
    {required this.userId,
    this.orgName = "",
    this.orgAddr1 = "",
    this.orgAddr2 = "",
    this.orgCity = "",
    this.orgProvince = "",
    this.orgCountry = "",
    this.orgZip = "",
    this.orgWeb = "",
    this.orgEmail = "",
    this.orgPhone = ""});