| 1 | import 'package:cake_wallet/src/screens/transaction_details/transaction_details_list_item.dart'; |
| 2 | |
| 3 | class UnspentCoinsSwitchItem extends TransactionDetailsListItem { |
| 4 | UnspentCoinsSwitchItem( |
| 5 | {required String title, |
| 6 | required String value, |
| 7 | required this.switchValue, |
| 8 | required this.onSwitchValueChange}) |
| 9 | : super(title: title, value: value); |
| 10 | |
| 11 | final bool Function() switchValue; |
| 12 | final void Function(bool value) onSwitchValueChange; |
| 13 | } |