TaxRule constructor

TaxRule({
  1. String label = 'MwSt. 19 %',
  2. double rate = 19,
  3. String filterField = '',
  4. String filterValue = '',
})

Creates a tax rule.

Implementation

TaxRule({
  this.label = 'MwSt. 19 %',
  this.rate = 19,
  this.filterField = '',
  this.filterValue = '',
});