remove method
Implementation
@override
Future<void> remove(int commitEntryIndex) async {
CommitEntry? commitEntry = (getBox() as Box).get(commitEntryIndex);
await super.remove(commitEntryIndex);
// On removing the entry from commit log keystore, remove the stale entries from
// commit log cache map
if (commitEntry != null) {
commitLogCache.remove(commitEntry.atKey!);
}
}