onPreloadingAttemptSourcesUpdated property

Stream<PreloadingAttemptSourcesUpdatedEvent> onPreloadingAttemptSourcesUpdated

Send a list of sources for all preloading attempts in a document.

Implementation

Stream<PreloadingAttemptSourcesUpdatedEvent>
    get onPreloadingAttemptSourcesUpdated => _client.onEvent
        .where((event) =>
            event.name == 'Preload.preloadingAttemptSourcesUpdated')
        .map((event) =>
            PreloadingAttemptSourcesUpdatedEvent.fromJson(event.parameters));