UserOrganization constructor

UserOrganization({
  1. int? userId,
  2. String? companyName,
  3. int? companyRocNumber,
  4. String? address,
  5. String? country,
  6. String? state,
  7. String? city,
  8. int? postalCode,
  9. String? emailAddress,
  10. String? password,
  11. String? contactNumber,
})

Implementation

UserOrganization(
    {this.userId,
    this.companyName,
    this.companyRocNumber,
    this.address,
    this.country,
    this.state,
    this.city,
    this.postalCode,
    this.emailAddress,
    this.password,
    this.contactNumber});