import 'package:flutter/cupertino.dart';
class AppBottomNavItem {
String? icon;
String? activeIcon;
String? label;
Widget? page;
AppBottomNavItem({this.icon, this.activeIcon, this.label, this.page});
}