UserInformationDto constructor
UserInformationDto(- {required String id,
- String? email,
- String? firstname,
- String? lastname,
- DateTime? birthday,
- required GenderDto gender,
- required bool isAnonymous,
- required AccountLinkStatusDto gmiAccountLinkStatus,
- required bool fileeeAccountIsLinked,
- required int billLimit,
- String? privacyPolicyVersion,
- String? termsOfServiceVersion,
- String? imageResource,
- List<ThirdPartySettingsDto>? thirdPartySettings,
- String? externalId}
)
Implementation
UserInformationDto({
required this.id,
this.email,
this.firstname,
this.lastname,
this.birthday,
required this.gender,
required this.isAnonymous,
required this.gmiAccountLinkStatus,
required this.fileeeAccountIsLinked,
required this.billLimit,
this.privacyPolicyVersion,
this.termsOfServiceVersion,
this.imageResource,
this.thirdPartySettings,
this.externalId,
});