Menubar constructor

const Menubar({
  1. Key? key,
  2. Offset? popoverOffset,
  3. bool border = true,
  4. required List<MenuItem> children,
})

Implementation

const Menubar({
  super.key,
  this.popoverOffset,
  this.border = true,
  required this.children,
});