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