DrawerChildBuilderDelegate constructor

const DrawerChildBuilderDelegate({
  1. bool enable = false,
  2. required int childCount,
  3. required IndexedWidgetBuilder builder,
  4. Widget? footer,
  5. DrawerHeader? header,
})

Implementation

const DrawerChildBuilderDelegate({
  this.enable = false,
  required this.childCount,
  required this.builder,
  this.footer,
  this.header,
});