clearSeen method
Clear the seen flag for tipId (re-enables the tip on its next emit).
Implementation
Future<void> clearSeen(String tipId) async {
if (_seen.remove(tipId) != null) {
_seenNotifiers[tipId]?.value = false;
await _persist();
}
}