TaskCommentsModel constructor
TaskCommentsModel({})
Implementation
TaskCommentsModel({
String? id,
String? comment,
String? userId,
String? profilePic,
String? userName,
Timestamp? createdAt,
Timestamp? deletedAt,
String? taskId,
String? attachmentLink,
String? fileExtension,
String? fileName,
String? thumbnailPath,}){
_id = id;
_comment = comment;
_userId = userId;
_profilePic = profilePic;
_userName = userName;
_createdAt = createdAt;
_deletedAt = deletedAt;
_taskId = taskId;
_attachmentLink = attachmentLink;
_fileExtension = fileExtension;
_fileName = fileName;
_thumbnailPath = thumbnailPath;
}