| 1 | import 'package:cake_wallet/anonpay/anonpay_invoice_info.dart'; |
| 2 | import 'package:cake_wallet/view_model/dashboard/action_list_item.dart'; |
| 3 | |
| 4 | class AnonpayTransactionListItem extends ActionListItem { |
| 5 | AnonpayTransactionListItem({required this.transaction, required super.key}); |
| 6 | |
| 7 | final AnonpayInvoiceInfo transaction; |
| 8 | |
| 9 | @override |
| 10 | DateTime get date => transaction.createdAt; |
| 11 | } |