ListFirstAndThirdPartyAudiencesResponse.fromJson constructor

ListFirstAndThirdPartyAudiencesResponse.fromJson(
  1. Map json_
)

Implementation

ListFirstAndThirdPartyAudiencesResponse.fromJson(core.Map json_)
    : this(
        firstAndThirdPartyAudiences:
            json_.containsKey('firstAndThirdPartyAudiences')
                ? (json_['firstAndThirdPartyAudiences'] as core.List)
                    .map((value) => FirstAndThirdPartyAudience.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                    .toList()
                : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );