dev
dart 16 lines 372 Bytes
Raw
1 class PendingTransactionDescription {
2 PendingTransactionDescription(
3 {required this.amount,
4 required this.fee,
5 required this.hash,
6 required this.hex,
7 required this.txKey,
8 required this.pointerAddress});
9
10 final int amount;
11 final int fee;
12 final String hash;
13 final String hex;
14 final String txKey;
15 final int pointerAddress;
16 }