Invoice constructor
Invoice({})
Implementation
Invoice({
required this.customerName,
required this.invoiceNumber,
required this.date,
required this.items,
required this.tax,
required this.total,
this.notes,
this.template = 'simple',
});