toggleRightSidebar method

void toggleRightSidebar()

Implementation

void toggleRightSidebar() {
  final CDKAppSidebarsState? state = keyAppStructure.currentState;
  if (state != null) {
    state.setSidebarRightVisibility(!state.isSidebarRightVisible);
  }
}