CustomerModel constructor

CustomerModel(
  1. String name,
  2. String customer_name,
  3. String customer_type,
  4. String? customer_group,
  5. String? gstin,
)

Implementation

CustomerModel(
  this.name,
  this.customer_name,
  this.customer_type,
  this.customer_group,
  this.gstin,
);