class FromMenuItem { final String title; final String routeName; bool isSelected; FromMenuItem({ required this.title, required this.routeName, this.isSelected = false, }); }