removePluginData method

  1. @Deprecated(r'Support for Flash has been removed. This function has no effect.')
Future<void> removePluginData(
  1. RemovalOptions options
)

Clears plugins' data. returns Called when plugins' data has been cleared.

Implementation

@Deprecated(
    r'Support for Flash has been removed. This function has no effect.')
Future<void> removePluginData(RemovalOptions options) async {
  await promiseToFuture<void>(
      $js.chrome.browsingData.removePluginData(options.toJS));
}