onPreloadingAttemptSourcesUpdated property

Stream<PreloadingAttemptSourcesUpdatedEvent> get 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),
    );