$ContactInfo constructor

$ContactInfo({
  1. String? countryCode,
  2. List<String>? hashedEmails,
  3. String? hashedFirstName,
  4. String? hashedLastName,
  5. List<String>? hashedPhoneNumbers,
  6. List<String>? zipCodes,
})

Implementation

$ContactInfo({
  this.countryCode,
  this.hashedEmails,
  this.hashedFirstName,
  this.hashedLastName,
  this.hashedPhoneNumbers,
  this.zipCodes,
});