UserDTO constructor

UserDTO({
  1. UserLinkDTO? links,
  2. String? accountId,
  3. bool? active,
  4. String? displayName,
  5. String? emailAddress,
  6. String? key,
  7. String? name,
  8. String? timeZone,
})

Implementation

UserDTO(
    {this.links,
    this.accountId,
    bool? active,
    this.displayName,
    this.emailAddress,
    this.key,
    this.name,
    this.timeZone})
    : active = active ?? false;