onUnresponsive property

EventStream<Process> get onUnresponsive

Fired each time a process becomes unresponsive, providing the corrseponding Process object. |process|: Details of the unresponsive process. Metrics requiring aggregation over time will not be populated in the object. Only available for renderer processes.

Implementation

EventStream<Process> get onUnresponsive => $js.chrome.processes.onUnresponsive
    .asStream(($c) => ($js.Process process) {
          return $c(Process.fromJS(process));
        });