copyWith method

RemoveColumn copyWith({
  1. String? taxable,
  2. String? gst,
})

Implementation

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