cake_wallet/lib/src/screens/exchange/widgets/picker_item.dart

11 lines
232 B
Dart
Raw Normal View History

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