CreditNoteSummary constructor

CreditNoteSummary({
  1. String? gst,
  2. String? taxable,
  3. String? sgst,
  4. String? sgstShow,
  5. String? cgst,
  6. String? igst,
  7. String? igstShow,
  8. String? sgstPrice,
  9. String? cgstPrice,
  10. String? igstPrice,
})

Implementation

CreditNoteSummary({
    String? gst,
    String? taxable,
    String? sgst,
    String? sgstShow,
    String? cgst,
    String? igst,
    String? igstShow,
    String? sgstPrice,
    String? cgstPrice,
    String? igstPrice,}){
  _gst = gst;
  _taxable = taxable;
  _sgst = sgst;
  _sgstShow = sgstShow;
  _cgst = cgst;
  _igst = igst;
  _igstShow = igstShow;
  _sgstPrice = sgstPrice;
  _cgstPrice = cgstPrice;
  _igstPrice = igstPrice;
}