User constructor

const User({
  1. required bool changePassword,
  2. String? photoUrl,
  3. required bool admin,
  4. required bool allowedToChangePassword,
  5. required String id,
  6. required String username,
  7. required String fullName,
  8. required String email,
  9. String? locale,
  10. required String tenantDomain,
  11. required String tenantName,
  12. required String tenantLocale,
  13. required bool blocked,
  14. String? authenticationType,
  15. String? description,
  16. List? properties,
  17. Integration? integration,
  18. String? discriminator,
})

Implementation

const User({
  required this.changePassword,
  this.photoUrl,
  required this.admin,
  required this.allowedToChangePassword,
  required this.id,
  required this.username,
  required this.fullName,
  required this.email,
  this.locale,
  required this.tenantDomain,
  required this.tenantName,
  required this.tenantLocale,
  required this.blocked,
  this.authenticationType,
  this.description,
  this.properties,
  this.integration,
  this.discriminator,
});