dev
dart 7 lines 163 Bytes
Raw
1 class AnyPayTransaction {
2 const AnyPayTransaction(this.tx, {required this.id, required this.key});
3
4 final String tx;
5 final String id;
6 final String? key;
7 }