$ContactInfo.fromJson constructor

$ContactInfo.fromJson(
  1. Map json_
)

Implementation

$ContactInfo.fromJson(core.Map json_)
    : this(
        countryCode: json_['countryCode'] as core.String?,
        hashedEmails: (json_['hashedEmails'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
        hashedFirstName: json_['hashedFirstName'] as core.String?,
        hashedLastName: json_['hashedLastName'] as core.String?,
        hashedPhoneNumbers: (json_['hashedPhoneNumbers'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
        zipCodes: (json_['zipCodes'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
      );