removeScriptChannelByName method

Future<void> removeScriptChannelByName(
  1. String channelName
)

Implementation

Future<void> removeScriptChannelByName(String channelName) async {
  await _initFuture!;
  await WebviewWinFloatingPlatform.instance.removeScriptChannelByName(_webviewId, channelName);
}