hideConsolePanel function

dynamic hideConsolePanel()

Implementation

hideConsolePanel() {
  if (consolePanelEntry != null) {
    FConsole.instance.status.value = FConsoleStatus.consoleBtn;
    consolePanelEntry!.remove();
    consolePanelEntry = null;
  }
}