copyWith method
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,
);