import 'package:flutter/material.dart'; class AppRoute { final IconData icon; final String route; final String name; const AppRoute({ required this.icon, required this.route, required this.name, }); }