page abstract method

Future<Page<BucketEntry>> page({
  1. String? prefix,
  2. String? delimiter,
  3. int pageSize = 50,
})

Start paging through objects in the bucket.

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

See list for more information on the other arguments.

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

Implementation

Future<Page<BucketEntry>> page(
    {String? prefix, String? delimiter, int pageSize = 50});