User constructor

User({
  1. String? createdAt,
  2. String? activeAt,
  3. String? id,
  4. String? name,
  5. String? email,
  6. dynamic roles,
  7. bool? isBanned,
  8. String? permissions,
  9. String? userType,
  10. bool? fulfillsNewRequirements,
  11. dynamic flags,
  12. dynamic details,
  13. String? oathClient,
  14. Preferences? preferences,
  15. bool? hasDefault,
})

Implementation

User({
  this.createdAt,
  this.activeAt,
  this.id,
  this.name,
  this.email,
  this.roles,
  this.isBanned,
  this.permissions,
  this.userType,
  this.fulfillsNewRequirements,
  this.flags,
  this.details,
  this.oathClient,
  this.preferences,
  this.hasDefault,
});