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