UserDetails constructor

UserDetails({
  1. String? accountId,
  2. String? accountType,
  3. bool? active,
  4. AvatarUrlsBean? avatarUrls,
  5. String? displayName,
  6. String? emailAddress,
  7. String? key,
  8. String? name,
  9. String? self,
  10. String? timeZone,
})

Implementation

UserDetails(
    {this.accountId,
    this.accountType,
    bool? active,
    this.avatarUrls,
    this.displayName,
    this.emailAddress,
    this.key,
    this.name,
    this.self,
    this.timeZone})
    : active = active ?? false;