copyWith method

RemoveColumn copyWith({
  1. String? taxable,
  2. String? gst,
  3. String? schemeDiscount,
  4. String? expiredDiscount,
})

Implementation

RemoveColumn copyWith({  String? taxable,
  String? gst,
  String? schemeDiscount,
  String? expiredDiscount,
}) => RemoveColumn(  taxable: taxable ?? _taxable,
  gst: gst ?? _gst,
  schemeDiscount: schemeDiscount ?? _schemeDiscount,
  expiredDiscount: expiredDiscount ?? _expiredDiscount,
);