Invoice constructor

Invoice({
  1. String id = "",
  2. String description = "",
  3. String orderId = "",
  4. int createdTime = 0,
  5. AppTransaction? transaction,
})

Implementation

Invoice({
  this.id = "",
  this.description = "",
  this.orderId = "",
  this.createdTime = 0,
  this.transaction,
});