NiceInvoiceLine constructor

NiceInvoiceLine({
  1. required String id,
  2. String description = '',
  3. double quantity = 1,
  4. double unitPrice = 0,
  5. double taxRate = 0,
})

Implementation

NiceInvoiceLine({
  required this.id,
  this.description = '',
  this.quantity = 1,
  this.unitPrice = 0,
  this.taxRate = 0,
});