onInterestGroupAuctionEventOccurred property
Stream<InterestGroupAuctionEventOccurredEvent>
get
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));