touch method

void touch()

Updates the last accessed time to now.

Implementation

void touch() {
  _lastAccessed = DateTime.now();
  _isNew = false; // Mark as not new after first access
}