isSidebarLeftVisible property
Implementation
bool get isSidebarLeftVisible =>
_sidebarLeftIsVisible;
Sets the visibility of the left sidebar.
@param isVisible The new visibility state of the left sidebar.
Implementation
set isSidebarLeftVisible(bool isVisible) {
setState(() {
_sidebarLeftIsVisible = isVisible;
});
}