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