ProjectSearchModel constructor
ProjectSearchModel({})
Implementation
ProjectSearchModel({
this.id,
this.projectTypeId,
this.projectNumber,
this.subProjectTypeId,
this.isTaskEnabled,
this.parent,
this.department,
this.referenceId,
this.tenantId,
int? startDate,
int? endDate,
super.boundaryCode,
super.isDeleted,
}) : startDateTime = startDate == null
? null
: DateTime.fromMillisecondsSinceEpoch(startDate),
endDateTime = endDate == null
? null
: DateTime.fromMillisecondsSinceEpoch(endDate),
super();