handleWebInterfaceCommand method Null safety

void handleWebInterfaceCommand(
  1. String command
)

Handles commands from the web interface.

  • Parameter command The command to handle.

Implementation

static void handleWebInterfaceCommand(String command) {
  Logger.called('handleWebInterfaceCommand');
  _webInterface.handleWebInterfaceCommand(command);
}