onInterestGroupAccessed property

Stream<InterestGroupAccessedEvent> onInterestGroupAccessed

One of the interest groups was accessed. Note that these events are global to all targets sharing an interest group store.

Implementation

Stream<InterestGroupAccessedEvent> get onInterestGroupAccessed => _client
    .onEvent
    .where((event) => event.name == 'Storage.interestGroupAccessed')
    .map((event) => InterestGroupAccessedEvent.fromJson(event.parameters));