onSharedStorageWorkletOperationExecutionFinished property

Stream<SharedStorageWorkletOperationExecutionFinishedEvent> get onSharedStorageWorkletOperationExecutionFinished

A shared storage run or selectURL operation finished its execution. The following parameters are included in all events.

Implementation

Stream<SharedStorageWorkletOperationExecutionFinishedEvent>
get onSharedStorageWorkletOperationExecutionFinished => _client.onEvent
    .where(
      (event) =>
          event.name ==
          'Storage.sharedStorageWorkletOperationExecutionFinished',
    )
    .map(
      (event) => SharedStorageWorkletOperationExecutionFinishedEvent.fromJson(
        event.parameters,
      ),
    );