toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (contactEmail != null) 'contactEmail': contactEmail!,
      if (dataProtectionOfficerEmail != null)
        'dataProtectionOfficerEmail': dataProtectionOfficerEmail!,
      if (dataProtectionOfficerName != null)
        'dataProtectionOfficerName': dataProtectionOfficerName!,
      if (dataProtectionOfficerPhone != null)
        'dataProtectionOfficerPhone': dataProtectionOfficerPhone!,
      if (euRepresentativeEmail != null)
        'euRepresentativeEmail': euRepresentativeEmail!,
      if (euRepresentativeName != null)
        'euRepresentativeName': euRepresentativeName!,
      if (euRepresentativePhone != null)
        'euRepresentativePhone': euRepresentativePhone!,
    };