mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
1cd90cf57d
* Added new picker screen with search bar and currency icons
10 lines
232 B
Dart
10 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;
|
|
}
|