itemById abstract method

Future<ItemType> itemById(
  1. Object id
)

Fetches a single feature by id from this source.

An identifier should be an integer number (int or BigInt) or a string.

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

Implementation

Future<ItemType> itemById(Object id);