onProcessInfosChanged property

void Function(BrowserProcessInfosChangedDetail detail)? get onProcessInfosChanged

Event fired with a list of all process using same user data folder except for crashpad process.

Officially Supported Platforms/Implementations:

Parameters - Officially Supported Platforms/Implementations:

  • detail: all platforms

Use the PlatformWebViewEnvironment.isPropertySupported method to check if this property is supported at runtime.

Implementation

void Function(BrowserProcessInfosChangedDetail detail)?
get onProcessInfosChanged => platform.onProcessInfosChanged;
set onProcessInfosChanged (void value(BrowserProcessInfosChangedDetail detail)?)

Implementation

set onProcessInfosChanged(
  void Function(BrowserProcessInfosChangedDetail detail)? value,
) => platform.onProcessInfosChanged = value;