cake_wallet/lib/src/screens/exchange/widgets/picker_item.dart
Serhii 1cd90cf57d
Cw 09 implement picker screen with ability to search (#250)
* Added new picker screen with search bar and currency icons
2022-03-31 15:16:42 +01:00

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;
}