toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final countryCode = this.countryCode;
  final hashedEmails = this.hashedEmails;
  final hashedFirstName = this.hashedFirstName;
  final hashedLastName = this.hashedLastName;
  final hashedPhoneNumbers = this.hashedPhoneNumbers;
  final zipCodes = this.zipCodes;
  return {
    'countryCode': ?countryCode,
    'hashedEmails': ?hashedEmails,
    'hashedFirstName': ?hashedFirstName,
    'hashedLastName': ?hashedLastName,
    'hashedPhoneNumbers': ?hashedPhoneNumbers,
    'zipCodes': ?zipCodes,
  };
}