Account constructor

Account(
  1. String userId, [
  2. String? username,
  3. String? phone,
  4. String? email,
  5. String? nickname,
  6. String? givenName,
  7. String? familyName,
  8. String? middleName,
  9. String? photo,
  10. Gender? gender,
  11. DateTime? birthdate,
  12. Address? address,
])

Implementation

Account(this.userId,
    [this.username,
    this.phone,
    this.email,
    this.nickname,
    this.givenName,
    this.familyName,
    this.middleName,
    this.photo,
    this.gender,
    this.birthdate,
    this.address]);