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,
      );