onResponseReceived property

Stream<ResponseReceivedEvent> onResponseReceived

Fired when HTTP response is available.

Implementation

Stream<ResponseReceivedEvent> get onResponseReceived => _client.onEvent
    .where((event) => event.name == 'Network.responseReceived')
    .map((event) => ResponseReceivedEvent.fromJson(event.parameters));