seen method

ActivityMarker seen(
  1. Iterable<String> activityIds
)

Mark all activities with ids activityIds as seen

Implementation

ActivityMarker seen(Iterable<String> activityIds) {
  if (!_allSeen) {
    _seenIds = {..._seenIds, ...activityIds};
  }
  return this;
}