RemarketingListsListResponse.fromJson constructor

RemarketingListsListResponse.fromJson(
  1. Map json_
)

Implementation

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