PaymentTransactionResponse constructor

PaymentTransactionResponse({
  1. required BigInt amount,
  2. required BigInt? closeAmount,
  3. required String receiver,
  4. String? closeRemainderTo,
})

Implementation

PaymentTransactionResponse({
  required this.amount,
  required this.closeAmount,
  required this.receiver,
  this.closeRemainderTo,
});