Invoice constructor

Invoice({
  1. String? invoiceId,
  2. InvoiceAmount? amount,
  3. InvoiceState? state,
  4. DateTime? created,
  5. String? correlationId,
  6. String? description,
  7. String? issuerId,
  8. String? receiverId,
})

Implementation

Invoice({
  this.invoiceId,
  this.amount,
  this.state,
  this.created,
  this.correlationId,
  this.description,
  this.issuerId,
  this.receiverId,
});