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