onRequestWillBeSentExtraInfo property

Stream<RequestWillBeSentExtraInfoEvent> onRequestWillBeSentExtraInfo

Fired when additional information about a requestWillBeSent event is available from the network stack. Not every requestWillBeSent event will have an additional requestWillBeSentExtraInfo fired for it, and there is no guarantee whether requestWillBeSent or requestWillBeSentExtraInfo will be fired first for the same request.

Implementation

Stream<RequestWillBeSentExtraInfoEvent> get onRequestWillBeSentExtraInfo =>
    _client.onEvent
        .where((event) => event.name == 'Network.requestWillBeSentExtraInfo')
        .map((event) =>
            RequestWillBeSentExtraInfoEvent.fromJson(event.parameters));