BEEFValidationResultEvent constructor

BEEFValidationResultEvent({
  1. String? walletId,
  2. String? invoiceId,
  3. String? txid,
  4. required bool valid,
  5. String? error,
  6. bool broadcasted = false,
  7. List<Map<String, dynamic>>? spendableUTXOs,
})

Implementation

BEEFValidationResultEvent({
  this.walletId,
  this.invoiceId,
  this.txid,
  required this.valid,
  this.error,
  this.broadcasted = false,
  this.spendableUTXOs,
});