9 lines
210 B
Dart
9 lines
210 B
Dart
|
class WorkBenchModel {
|
||
|
final String title;
|
||
|
final String icon;
|
||
|
final String? route;
|
||
|
final Function()? onTap;
|
||
|
WorkBenchModel(
|
||
|
{required this.title, required this.icon, this.route, this.onTap});
|
||
|
}
|