ModulaDrawer constructor

const ModulaDrawer({
  1. required List<ModulaDrawerItem> items,
  2. Key? key,
  3. Widget? header,
  4. Widget? footer,
  5. Color? backgroundColor,
  6. double width = 280,
  7. EdgeInsetsGeometry? padding,
})

Implementation

const ModulaDrawer({
  required this.items,
  super.key,
  this.header,
  this.footer,
  this.backgroundColor,
  this.width = 280,
  this.padding,
});