InquiryHistory constructor
InquiryHistory({
- String? id,
- String? inquiryId,
- String? type,
- String? projectTitle,
- String? pageName,
- String? userId,
- String? salesName,
- String? clientFirstName,
- String? clientLastName,
- String? emailAddress,
- String? leadSource,
- String? leadSubSource,
- String? ivrsCallPath,
- String? masterUserIdIvrsCall,
- String? ivrsName,
- String? dateTime,
- String? dateFormat,
- bool isSelected = false,
Implementation
InquiryHistory({
String? id,
String? inquiryId,
String? type,
String? projectTitle,
String? pageName,
String? userId,
String? salesName,
String? clientFirstName,
String? clientLastName,
String? emailAddress,
String? leadSource,
String? leadSubSource,
String? ivrsCallPath,
String? masterUserIdIvrsCall,
String? ivrsName,
String? dateTime,
String? dateFormat,
bool isSelected = false,
}){
_id = id;
_inquiryId = inquiryId;
_type = type;
_projectTitle = projectTitle;
_pageName = pageName;
_userId = userId;
_salesName = salesName;
_clientFirstName = clientFirstName;
_clientLastName = clientLastName;
_emailAddress = emailAddress;
_leadSource = leadSource;
_leadSubSource = leadSubSource;
_ivrsCallPath = ivrsCallPath;
_masterUserIdIvrsCall = masterUserIdIvrsCall;
_ivrsName = ivrsName;
_dateTime = dateTime;
_dateFormat = dateFormat;
_isSelected = isSelected;
}