onInterestGroupAuctionEventOccurred property

Stream<InterestGroupAuctionEventOccurredEvent> onInterestGroupAuctionEventOccurred

An auction involving interest groups is taking place. These events are target-specific.

Implementation

Stream<InterestGroupAuctionEventOccurredEvent>
    get onInterestGroupAuctionEventOccurred => _client.onEvent
        .where((event) =>
            event.name == 'Storage.interestGroupAuctionEventOccurred')
        .map((event) => InterestGroupAuctionEventOccurredEvent.fromJson(
            event.parameters));