RemoveColumn constructor

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

Implementation

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