menu.dart 413 B

12345678910111213141516171819
  1. import 'package:flutter/widgets.dart';
  2. class HomeMenuItem {
  3. final String title;
  4. final String routeName;
  5. final String key;
  6. IconData? iconData;
  7. Widget? iconWidget;
  8. bool isSelected;
  9. HomeMenuItem({
  10. required this.title,
  11. required this.routeName,
  12. required this.key,
  13. this.isSelected = false,
  14. this.iconData,
  15. this.iconWidget,
  16. }) : assert(iconData != null || iconWidget != null);
  17. }