get method

Future<T> get(
  1. String id
)

Implementation

Future<T> get(String id) async {
  final record = await load(id);
  return record ?? nullPointer('No $entityName record for $id');
}