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