Users constructor

Users({
  1. String? id,
  2. String? createdAt,
  3. String? email,
  4. String? passwordChangedAt,
  5. bool? isGuest,
  6. bool? isTest,
  7. String? type,
  8. Detail? detail,
  9. List<RoleDTO>? roles,
})

Implementation

Users(
    {this.id,
    this.createdAt,
    this.email,
    this.passwordChangedAt,
    this.isGuest,
    this.isTest,
    this.type,
    this.detail,
    this.roles});