CustomerModel.fromJson constructor
Implementation
factory CustomerModel.fromJson(Map<String, dynamic> json) {
return CustomerModel(
json["name"],
json["customer_name"],
json["customer_type"],
json["customer_group"],
json["gstin"],
);
}