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