Aidra Connect 10.0.2+16
Aidra Connect Mobile Application
Loading...
Searching...
No Matches
dashboard_item_entity.dart
Go to the documentation of this file.
1import 'package:flutter/widgets.dart';
2
4 final String title;
5 final IconData icon;
6 final Color color;
7 final String? subtitle;
8 final String? path;
9
11 required this.title,
12 required this.icon,
13 required this.color,
14 this.subtitle,
15 this.path,
16 });
17}
DashboardItem({ required this.title, required this.icon, required this.color, this.subtitle, this.path, })