mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
11 lines
232 B
Dart
11 lines
232 B
Dart
|
class PickerItem<T> {
|
||
|
PickerItem(this.original,
|
||
|
{this.title, this.iconPath, this.tag, this.description});
|
||
|
|
||
|
final String title;
|
||
|
final String iconPath;
|
||
|
final String tag;
|
||
|
final T original;
|
||
|
final String description;
|
||
|
}
|