UserBean constructor

UserBean({
  1. String? accountId,
  2. bool? active,
  3. UserBeanAvatarUrls? avatarUrls,
  4. String? displayName,
  5. String? key,
  6. String? name,
  7. String? self,
})

Implementation

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