remove method

void remove(
  1. Set<VoiceCommand> commands
)

Implementation

void remove(Set<VoiceCommand> commands) {
  _activeCommands.removeAll(commands);
  _methodChannelHandler.setCommands(_activeCommands);
}