import 'package:flutter/material.dart'; class NavigationItem { final IconData icon; final String title; NavigationItem(this.icon, this.title); }