UserBean constructor

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

Implementation

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