MenuButton constructor

const MenuButton({
  1. required String header,
  2. required IconData icon,
  3. String? description,
  4. Color? color,
  5. required Widget route,
})

Implementation

const MenuButton(
    {required this.header,
    required this.icon,
    this.description,
    this.color,
    required this.route});