removeJavascriptChannels method

Future<void> removeJavascriptChannels(
  1. Set<String> javascriptChannelNames
)

Removes JavaScript channel names from the set of enabled channels.

This disables channels that were previously enabled by addJavascriptChannels or through CreationParams.javascriptChannelNames.

Implementation

Future<void> removeJavascriptChannels(Set<String> javascriptChannelNames) {
  throw UnimplementedError(
      'WebView removeJavascriptChannels is not implemented on the current platform');
}