UserDetails constructor

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

Implementation

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