AcknowledgePaymentMessage constructor

AcknowledgePaymentMessage({
  1. required String channelId,
  2. required String walletId,
  3. required BigInt amountSats,
  4. required String paymentTxHex,
  5. required String clientSignatureHex,
  6. required int proposedSequence,
  7. required BigInt proposedClientBalance,
  8. required BigInt proposedServerBalance,
})

Implementation

AcknowledgePaymentMessage({
  required this.channelId,
  required this.walletId,
  required this.amountSats,
  required this.paymentTxHex,
  required this.clientSignatureHex,
  required this.proposedSequence,
  required this.proposedClientBalance,
  required this.proposedServerBalance,
}) : super(payload: null);