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