InquiryHistoryData constructor

InquiryHistoryData({
  1. String? id,
  2. String? inquiryId,
  3. String? type,
  4. String? projectId,
  5. String? projectTitle,
  6. String? userId,
  7. String? dateFormat,
  8. String? salesName,
  9. String? clientFirstName,
  10. String? clientLastName,
  11. String? clientContactNo,
  12. String? emailAddress,
  13. String? leadSource,
  14. String? leadSubSource,
  15. String? ivrsCallPath,
  16. String? masterUserIdIvrsCall,
  17. String? ivrsName,
  18. num? createdAtToday,
  19. String? createdAt,
  20. String? createdTime,
})

Implementation

InquiryHistoryData({
    String? id,
    String? inquiryId,
    String? type,
    String? projectId,
    String? projectTitle,
    String? userId,
    String? dateFormat,
    String? salesName,
    String? clientFirstName,
    String? clientLastName,
    String? clientContactNo,
    String? emailAddress,
    String? leadSource,
    String? leadSubSource,
    String? ivrsCallPath,
    String? masterUserIdIvrsCall,
    String? ivrsName,
    num? createdAtToday,
    String? createdAt,
    String? createdTime,}){
  _id = id;
  _inquiryId = inquiryId;
  _type = type;
  _projectId = projectId;
  _projectTitle = projectTitle;
  _userId = userId;
  _dateFormat = dateFormat;
  _salesName = salesName;
  _clientFirstName = clientFirstName;
  _clientLastName = clientLastName;
  _clientContactNo = clientContactNo;
  _emailAddress = emailAddress;
  _leadSource = leadSource;
  _leadSubSource = leadSubSource;
  _ivrsCallPath = ivrsCallPath;
  _masterUserIdIvrsCall = masterUserIdIvrsCall;
  _ivrsName = ivrsName;
  _createdAtToday = createdAtToday;
  _createdAt = createdAt;
  _createdTime = createdTime;
}