PaymentRecordedResponse constructor

PaymentRecordedResponse({
  1. required String channelId,
  2. required BigInt amountSats,
  3. required int sequenceNumber,
  4. required String paymentTxHex,
  5. required String clientSignatureHex,
  6. required BigInt newClientBalanceSats,
  7. required BigInt newServerBalanceSats,
  8. required bool success,
  9. String? error,
})

Implementation

PaymentRecordedResponse({
  required this.channelId,
  required this.amountSats,
  required this.sequenceNumber,
  required this.paymentTxHex,
  required this.clientSignatureHex,
  required this.newClientBalanceSats,
  required this.newServerBalanceSats,
  required this.success,
  this.error,
}) : super(payload: null);