UserInformationDto constructor

UserInformationDto(
  1. {required String id,
  2. String? email,
  3. String? firstname,
  4. String? lastname,
  5. DateTime? birthday,
  6. required GenderDto gender,
  7. required bool isAnonymous,
  8. required AccountLinkStatusDto gmiAccountLinkStatus,
  9. required bool fileeeAccountIsLinked,
  10. required int billLimit,
  11. String? privacyPolicyVersion,
  12. String? termsOfServiceVersion,
  13. String? imageResource,
  14. List<ThirdPartySettingsDto>? thirdPartySettings,
  15. 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,
});