MenuSection constructor

const MenuSection({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. required List<Widget> children,
})

Implementation

const MenuSection({
  super.key,
  required this.title,
  this.subtitle,
  required this.children,
});