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