Sidebar constructor

const Sidebar({
  1. Key? key,
  2. List<TSidebarItem>? items,
  3. double width = 275,
  4. double minifiedWidth = 80,
  5. bool isMinimized = true,
})

Implementation

const Sidebar({
  super.key,
  this.items,
  this.width = 275,
  this.minifiedWidth = 80,
  this.isMinimized = true,
});