ContactInfo.fromJson constructor

ContactInfo.fromJson(
  1. Map json_
)

Implementation

ContactInfo.fromJson(core.Map json_)
    : this(
        contactEmail: json_['contactEmail'] as core.String?,
        dataProtectionOfficerEmail:
            json_['dataProtectionOfficerEmail'] as core.String?,
        dataProtectionOfficerName:
            json_['dataProtectionOfficerName'] as core.String?,
        dataProtectionOfficerPhone:
            json_['dataProtectionOfficerPhone'] as core.String?,
        euRepresentativeEmail: json_['euRepresentativeEmail'] as core.String?,
        euRepresentativeName: json_['euRepresentativeName'] as core.String?,
        euRepresentativePhone: json_['euRepresentativePhone'] as core.String?,
      );