InvoiceCreatedEvent constructor

InvoiceCreatedEvent({
  1. required String walletId,
  2. required String invoiceId,
  3. required List<String> addresses,
  4. required BigInt amount,
  5. List<InvoiceOutputSpec>? outputs,
  6. String? description,
  7. DateTime? expiresAt,
  8. required bool success,
  9. String? error,
})

Implementation

InvoiceCreatedEvent({
  required this.walletId,
  required this.invoiceId,
  required this.addresses,
  required this.amount,
  this.outputs,
  this.description,
  this.expiresAt,
  required this.success,
  this.error,
});