toJson method
Implementation
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['id'] = _id;
map['inquiry_id'] = _inquiryId;
map['type'] = _type;
map['project_title'] = _projectTitle;
map['page_name'] = _pageName;
map['user_id'] = _userId;
map['sales_name'] = _salesName;
map['client_first_name'] = _clientFirstName;
map['client_last_name'] = _clientLastName;
map['email_address'] = _emailAddress;
map['lead_source'] = _leadSource;
map['lead_sub_source'] = _leadSubSource;
map['ivrs_call_path'] = _ivrsCallPath;
map['master_user_id_ivrs_call'] = _masterUserIdIvrsCall;
map['ivrs_name'] = _ivrsName;
map['date_time'] = _dateTime;
map['date_format'] = _dateFormat;
map['isSelected'] = _isSelected;
return map;
}