updateInfoFields method
Updates the Info fields
accessTime: The cache access timeupdateTime: The cache update time
Implementation
void updateInfoFields({DateTime? accessTime, DateTime? updateTime}) {
info.accessTime = accessTime ?? info.accessTime;
info.updateTime = updateTime ?? info.updateTime;
_state = EntryState.updatedInfo;
}