StockholmSideBar constructor

const StockholmSideBar({
  1. required List<Widget> children,
  2. double width = 240,
  3. Color? backgroundColor,
  4. Color? dividerColor,
  5. Widget? footer,
  6. Key? key,
})

Implementation

const StockholmSideBar({
  required this.children,
  this.width = 240,
  this.backgroundColor,
  this.dividerColor,
  this.footer,
  Key? key,
}) : super(key: key);