DevMenu constructor

const DevMenu({
  1. Key? key,
  2. required Widget body,
  3. required Widget devMenu,
  4. List<Gesture>? gestures,
  5. VoidCallback? onOpen,
  6. VoidCallback? onClose,
  7. HitTestBehavior? behavior,
  8. bool hideInRelease = true,
})

Implementation

const DevMenu({
  Key? key,
  required Widget body,
  required Widget devMenu,
  this.gestures,
  this.onOpen,
  this.onClose,
  this.behavior,
  bool hideInRelease = true,
})  : this.body = body,
      this.devMenu = devMenu,
      this.hideInRelease = hideInRelease,
      super(key: key);