| 1 | class PendingTransactionDescription { |
| 2 | PendingTransactionDescription( |
| 3 | {required this.amount, |
| 4 | required this.fee, |
| 5 | required this.hash, |
| 6 | required this.hex, |
| 7 | required this.pointerAddress}); |
| 8 | |
| 9 | final int amount; |
| 10 | final int fee; |
| 11 | final String hash; |
| 12 | final String hex; |
| 13 | final int pointerAddress; |
| 14 | } |