load<T> abstract method

Future<T?> load<T>(
  1. K itemKey
)

Loads the value of a data item from the storage.

itemKey identifies the data item. itemKey can be of any form: resource url, guid, tuple <db, table, row, column> etc.

Implementation

Future<T?> load<T>(K itemKey);