ProjectStaffSearchModel.ignoreDeleted constructor
- @MappableConstructor()
Implementation
@MappableConstructor()
ProjectStaffSearchModel.ignoreDeleted({
this.id,
this.staffId,
this.userId,
this.projectId,
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);