PaymentReadyEvent constructor

PaymentReadyEvent({
  1. String? walletId,
  2. required String invoiceId,
  3. required Uint8List beefBytes,
  4. required String txid,
  5. required BigInt amountPaid,
  6. required BigInt changeAmount,
  7. required int ancestorCount,
  8. required bool success,
  9. String? error,
})

Implementation

PaymentReadyEvent({
  this.walletId,
  required this.invoiceId,
  required this.beefBytes,
  required this.txid,
  required this.amountPaid,
  required this.changeAmount,
  required this.ancestorCount,
  required this.success,
  this.error,
});