DbLensLayout constructor

const DbLensLayout({
  1. Key? key,
  2. required Widget body,
  3. Widget? header,
  4. Widget? sidebar,
  5. Widget? toolbar,
  6. Widget? bottomBar,
  7. double sidebarWidth = 250,
})

Implementation

const DbLensLayout({
  super.key,
  required this.body,
  this.header,
  this.sidebar,
  this.toolbar,
  this.bottomBar,
  this.sidebarWidth = 250,
});