pageBucketNames abstract method

Future<Page<String>> pageBucketNames({
  1. int pageSize = 50,
})

Start paging through names of all buckets.

The maximum number of buckets in each page is specified in pageSize.

Returns a Future which completes with a Page object holding the first page. Use the Page object to move to the next page of buckets.

Implementation

Future<Page<String>> pageBucketNames({int pageSize = 50});