SecondaryMenu constructor

const SecondaryMenu({
  1. Key? key,
  2. required List<Widget> children,
  3. double width = 150,
})

Implementation

const SecondaryMenu({
  Key? key,
  required this.children,
  this.width = 150,
}) : super(key: key);