removeRemoteCommand static method

dynamic removeRemoteCommand(
  1. String id
)

Removes a RemoteCommand from the RemoteCommands Dispatcher

Implementation

static removeRemoteCommand(String id) {
  _remoteCommands.remove(id);
  _channel.invokeMethod('removeRemoteCommand', {'id': id});
}