Account constructor

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

Implementation

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