DrawerChildListDelegate constructor

const DrawerChildListDelegate({
  1. required List<Widget> children,
  2. bool enable = false,
  3. DrawerHeader? header,
  4. Widget? footer,
})

Implementation

const DrawerChildListDelegate({
  required this.children,
  this.enable = false,
  this.header,
  this.footer,
}) : super(
        header: header,
        footer: footer,
      );