Tax constructor

Tax({
  1. int? id,
  2. String? total,
  3. String? subtotal,
})

Implementation

Tax({
  this.id,
  this.total,
  this.subtotal,
});