clearSeen method

Future<void> clearSeen(
  1. String tipId
)

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();
  }
}