getById abstract method

Future<ReadResult<T>> getById(
  1. String id,
  2. RequestDetails details
)

Loads the instance of T whose primary key is id.

Implementation

Future<ReadResult<T>> getById(
  String id,
  RequestDetails details,
);