Invoice constructor
Invoice({
- String id = "",
- String description = "",
- String orderId = "",
- int createdTime = 0,
- AppTransaction? transaction,
Implementation
Invoice({
this.id = "",
this.description = "",
this.orderId = "",
this.createdTime = 0,
this.transaction,
});