itemsAll abstract method

Future<ItemsType> itemsAll({
  1. int? limit,
})

Fetches all features items from this source.

An optional limit sets maximum number of items returned. If given, it must be a positive integer.

This call accesses only one set of feature items (number of returned items can be limited).

Throws ServiceException<FeatureFailure> in a case of a failure.

Implementation

Future<ItemsType> itemsAll({int? limit});