menu.dart 197 B

1234567891011
  1. class FromMenuItem {
  2. final String title;
  3. final String routeName;
  4. bool isSelected;
  5. FromMenuItem({
  6. required this.title,
  7. required this.routeName,
  8. this.isSelected = false,
  9. });
  10. }