add method

void add(
  1. Set<VoiceCommand> commands
)

Implementation

void add(Set<VoiceCommand> commands) {
  _activeCommands.addAll(commands);
  _methodChannelHandler.setCommands(_activeCommands);
}