onSubresourceWebBundleInnerResponseParsed property
Stream<SubresourceWebBundleInnerResponseParsedEvent>
get
onSubresourceWebBundleInnerResponseParsed
Fired when handling requests for resources within a .wbn file. Note: this will only be fired for resources that are requested by the webpage.
Implementation
Stream<SubresourceWebBundleInnerResponseParsedEvent>
get onSubresourceWebBundleInnerResponseParsed => _client.onEvent
.where(
(event) =>
event.name == 'Network.subresourceWebBundleInnerResponseParsed',
)
.map(
(event) => SubresourceWebBundleInnerResponseParsedEvent.fromJson(
event.parameters,
),
);