User constructor

User({
  1. String? accountId,
  2. UserAccountType? accountType,
  3. bool? active,
  4. SimpleListWrapperApplicationRole? applicationRoles,
  5. AvatarUrlsBean? avatarUrls,
  6. String? displayName,
  7. String? emailAddress,
  8. String? expand,
  9. SimpleListWrapperGroupName? groups,
  10. String? key,
  11. String? locale,
  12. String? name,
  13. String? self,
  14. String? timeZone,
})

Implementation

User(
    {this.accountId,
    this.accountType,
    bool? active,
    this.applicationRoles,
    this.avatarUrls,
    this.displayName,
    this.emailAddress,
    this.expand,
    this.groups,
    this.key,
    this.locale,
    this.name,
    this.self,
    this.timeZone})
    : active = active ?? false;