getLatestCommitEntry method

CommitEntry? getLatestCommitEntry(
  1. String key
)

Returns the latest commitEntry of the key.

Implementation

CommitEntry? getLatestCommitEntry(String key) {
  return commitLogCache.getEntry(key);
}