menu.dart 370 B

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