AdvertiserGroupsListResponse.fromJson constructor

AdvertiserGroupsListResponse.fromJson(
  1. Map json_
)

Implementation

AdvertiserGroupsListResponse.fromJson(core.Map json_)
  : this(
      advertiserGroups: (json_['advertiserGroups'] as core.List?)
          ?.map(
            (value) => AdvertiserGroup.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      kind: json_['kind'] as core.String?,
      nextPageToken: json_['nextPageToken'] as core.String?,
    );