import 'package:flutter/material.dart'; class MenuModel { String title = ""; int mainValue = 0; List subValue = []; IconData icon = Icons.abc; int index = 0; MenuModel( {required this.icon, required this.subValue, required this.title, required this.index, required this.mainValue}); }