onInterestGroupAuctionNetworkRequestCreated property

Stream<InterestGroupAuctionNetworkRequestCreatedEvent> onInterestGroupAuctionNetworkRequestCreated

Specifies which auctions a particular network fetch may be related to, and in what role. Note that it is not ordered with respect to Network.requestWillBeSent (but will happen before loadingFinished loadingFailed).

Implementation

Stream<InterestGroupAuctionNetworkRequestCreatedEvent>
    get onInterestGroupAuctionNetworkRequestCreated => _client.onEvent
        .where((event) =>
            event.name == 'Storage.interestGroupAuctionNetworkRequestCreated')
        .map((event) =>
            InterestGroupAuctionNetworkRequestCreatedEvent.fromJson(
                event.parameters));