onSubresourceWebBundleMetadataError property
Stream<SubresourceWebBundleMetadataErrorEvent>
get
onSubresourceWebBundleMetadataError
Fired once when parsing the .wbn file has failed.
Implementation
Stream<SubresourceWebBundleMetadataErrorEvent>
get onSubresourceWebBundleMetadataError => _client.onEvent
.where(
(event) => event.name == 'Network.subresourceWebBundleMetadataError',
)
.map(
(event) =>
SubresourceWebBundleMetadataErrorEvent.fromJson(event.parameters),
);