fromMem method

T? fromMem(
  1. DocumentReference<Object?> ref
)

Get the cached data directly from memory

Implementation

T? fromMem(DocumentReference ref) {
  fetch(ref);
  return _items[ref.path];
}