RemoveColumn constructor

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

Implementation

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