isSidebarRightVisible property

bool isSidebarRightVisible

Implementation

bool get isSidebarRightVisible =>
    _sidebarRightIsVisible;
void isSidebarRightVisible=(bool isVisible)

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;
  });
}