CustomerData constructor

CustomerData({
  1. int? customerId,
  2. int? collectionTemplateId,
  3. String? consentSource,
  4. String? geolocation,
  5. String? continent,
  6. int? subjectIdentityId,
  7. String? subjectIdentityValue,
  8. String? subjectIdentityName,
  9. String? verificationKey,
  10. List<PiiData>? piiData,
  11. List<ConsentStatus>? consentStatus,
})

Implementation

CustomerData(
    {this.customerId,
      this.collectionTemplateId,
      this.consentSource,
      this.geolocation,
      this.continent,
      this.subjectIdentityId,
      this.subjectIdentityValue,
      this.subjectIdentityName,
      this.verificationKey,
      this.piiData,
      this.consentStatus});