removeJavaScriptChannel method

Future<void> removeJavaScriptChannel(
  1. String javaScriptChannelName
)

Removes the JavaScript channel with the matching name from the set of enabled channels.

This disables the channel with the matching name if it was previously enabled through the addJavaScriptChannel.

Implementation

Future<void> removeJavaScriptChannel(String javaScriptChannelName) {
  return platform.removeJavaScriptChannel(javaScriptChannelName);
}