ListCustomListsResponse.fromJson constructor
ListCustomListsResponse.fromJson(
- Map json_
Implementation
ListCustomListsResponse.fromJson(core.Map json_)
: this(
customLists: json_.containsKey('customLists')
? (json_['customLists'] as core.List)
.map((value) => CustomList.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);