removeJavaScriptChannel method

Future<void> removeJavaScriptChannel(
  1. String javaScriptChannelName
)
inherited

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) {
  throw UnimplementedError(
      'removeJavaScriptChannel is not implemented on the current platform');
}