ListCollectionIdsRequest.fromJson constructor

ListCollectionIdsRequest.fromJson(
  1. Map json_
)

Implementation

ListCollectionIdsRequest.fromJson(core.Map json_)
    : this(
        pageSize: json_.containsKey('pageSize')
            ? json_['pageSize'] as core.int
            : null,
        pageToken: json_.containsKey('pageToken')
            ? json_['pageToken'] as core.String
            : null,
        readTime: json_.containsKey('readTime')
            ? json_['readTime'] as core.String
            : null,
      );