InvoiceModel constructor
InvoiceModel({})
Returns a new InvoiceModel instance.
Implementation
InvoiceModel({
required this.id,
required this.customerId,
required this.employeeId,
required this.date,
required this.description,
required this.discount,
required this.value,
});