InquiryHistory constructor

InquiryHistory({
  1. String? id,
  2. String? inquiryId,
  3. String? type,
  4. String? projectTitle,
  5. String? pageName,
  6. String? userId,
  7. String? salesName,
  8. String? clientFirstName,
  9. String? clientLastName,
  10. String? emailAddress,
  11. String? leadSource,
  12. String? leadSubSource,
  13. String? ivrsCallPath,
  14. String? masterUserIdIvrsCall,
  15. String? ivrsName,
  16. String? dateTime,
  17. String? dateFormat,
  18. 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;
}