ListCollectionIdsResponse.fromJson constructor

ListCollectionIdsResponse.fromJson(
  1. Map json_
)

Implementation

ListCollectionIdsResponse.fromJson(core.Map json_)
  : this(
      collectionIds: (json_['collectionIds'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      nextPageToken: json_['nextPageToken'] as core.String?,
    );