SidebarConfig constructor

const SidebarConfig({
  1. Color? backgroundColor,
  2. double? width,
  3. EdgeInsets? padding = const EdgeInsets.symmetric(vertical: 12, horizontal: 8),
})

Implementation

const SidebarConfig({
  this.backgroundColor,
  this.width,
  this.padding = const EdgeInsets.symmetric(vertical: 12, horizontal: 8),
});