dev
dart 10 lines 268 Bytes
Raw
1 class PickerItem<T> {
2 PickerItem(this.original,
3 {required this.title, required this.iconPath, required this.tag, required this.description});
4
5 final String title;
6 final String iconPath;
7 final String tag;
8 final T original;
9 final String description;
10 }