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