ListLocationListsResponse.fromJson constructor

ListLocationListsResponse.fromJson(
  1. Map json_
)

Implementation

ListLocationListsResponse.fromJson(core.Map json_)
  : this(
      locationLists: (json_['locationLists'] as core.List?)
          ?.map(
            (value) => LocationList.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      nextPageToken: json_['nextPageToken'] as core.String?,
    );