copyWith method

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

Implementation

Summary copyWith({  String? taxable,
  String? sgst,
  String? cgst,
  String? igst,
  String? sgstPrice,
  String? cgstPrice,
  String? igstPrice,
  String? sgstShow,
  String? igstShow,
}) => Summary(  taxable: taxable ?? this.taxable,
  sgst: sgst ?? this.sgst,
  cgst: cgst ?? this.cgst,
  igst: igst ?? this.igst,
  sgstPrice: sgstPrice ?? this.sgstPrice,
  cgstPrice: cgstPrice ?? this.cgstPrice,
  igstPrice: igstPrice ?? this.igstPrice,
  sgstShow: sgstShow ?? this.sgstShow,
  igstShow: igstShow ?? this.igstShow,
);