Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSAMI-cakewallet
QOSAMI-cakewallet
/
lib
/
src
/
screens
/
exchange
/
widgets
/
picker_item.dart
Code
Commits
Issues
Pulls
Sessions
CI/CD
dev
dev
dart
10 lines
268 Bytes
Copy permalink
Copy
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
}