CustomerList.fromJson constructor
Implementation
factory CustomerList.fromJson(Map<String, dynamic> json) => CustomerList(
dealerCustomerListCount: json["DealerCustomerListCount"],
dealerCustomerList: json["DealerCustomerList"] == null ? [] : List<Customer>.from(json["DealerCustomerList"]!.map((x) => Customer.fromJson(x))),
);