toJson method
Implementation
@override
Map<String, dynamic> toJson() => {
"DealerCustomerListCount": dealerCustomerListCount,
"DealerCustomerList": dealerCustomerList == null ? [] : List<dynamic>.from(dealerCustomerList!.map((x) => x.toJson())),
};