SheetLabels constructor

const SheetLabels({
  1. required String document,
  2. String from = 'From',
  3. String to = 'To',
  4. String number = 'Number',
  5. String date = 'Date',
  6. String extra = 'Reference',
  7. String subject = 'Subject',
  8. String notes = 'Notes',
  9. String subtotal = 'Subtotal',
  10. String tax = 'Tax',
  11. String total = 'Total',
  12. String presentedTo = 'Presented to',
  13. List<String> columns = const <String>['Description', 'Detail', 'Amount'],
})

SheetLabels API.

Implementation

const SheetLabels({
  required this.document,
  this.from = 'From',
  this.to = 'To',
  this.number = 'Number',
  this.date = 'Date',
  this.extra = 'Reference',
  this.subject = 'Subject',
  this.notes = 'Notes',
  this.subtotal = 'Subtotal',
  this.tax = 'Tax',
  this.total = 'Total',
  this.presentedTo = 'Presented to',
  this.columns = const <String>['Description', 'Detail', 'Amount'],
});