UserDto constructor
UserDto({
- required String id,
- String? rev,
- int? deletionDate,
- int? created,
- String? name,
- Set<
PropertyStubDto> properties = const {}, - Set<
PermissionDto> permissions = const {}, - Set<
String> roles = const {}, - UserDtoTypeEnum? type,
- UserDtoStatusEnum? status,
- String? login,
- String? passwordHash,
- String? secret,
- bool? use2fa,
- String? groupId,
- String? healthcarePartyId,
- String? patientId,
- String? deviceId,
- Map<
String, Set< autoDelegations = const {},String> > - DateTime? createdDate,
- DateTime? termsOfUseDate,
- String? email,
- String? mobilePhone,
- Map<
String, String> applicationTokens = const {}, - Map<
String, AuthenticationTokenDto> authenticationTokens = const {},
Returns a new UserDto instance.
Implementation
UserDto({
required this.id,
this.rev,
this.deletionDate,
this.created,
this.name,
this.properties = const {},
this.permissions = const {},
this.roles = const {},
this.type,
this.status,
this.login,
this.passwordHash,
this.secret,
this.use2fa,
this.groupId,
this.healthcarePartyId,
this.patientId,
this.deviceId,
this.autoDelegations = const {},
this.createdDate,
this.termsOfUseDate,
this.email,
this.mobilePhone,
this.applicationTokens = const {},
this.authenticationTokens = const {},
});