| 1 | import 'package:cw_core/wallet_type.dart'; |
| 2 | |
| 3 | class WalletListItem { |
| 4 | const WalletListItem({ |
| 5 | required this.name, |
| 6 | required this.type, |
| 7 | required this.key, |
| 8 | required this.isHardware, |
| 9 | this.isCurrent = false, |
| 10 | this.isEnabled = true, |
| 11 | this.isTestnet = false, |
| 12 | }); |
| 13 | |
| 14 | final String name; |
| 15 | final WalletType type; |
| 16 | final bool isCurrent; |
| 17 | final dynamic key; |
| 18 | final bool isEnabled; |
| 19 | final bool isTestnet; |
| 20 | final bool isHardware; |
| 21 | } |