onResponseReceivedExtraInfo property

Stream<ResponseReceivedExtraInfoEvent> onResponseReceivedExtraInfo

Fired when additional information about a responseReceived event is available from the network stack. Not every responseReceived event will have an additional responseReceivedExtraInfo for it, and responseReceivedExtraInfo may be fired before or after responseReceived.

Implementation

Stream<ResponseReceivedExtraInfoEvent> get onResponseReceivedExtraInfo =>
    _client.onEvent
        .where((event) => event.name == 'Network.responseReceivedExtraInfo')
        .map((event) =>
            ResponseReceivedExtraInfoEvent.fromJson(event.parameters));