TaskSearchModel.ignoreDeleted constructor
TaskSearchModel.ignoreDeleted(
{ - List<String>? id,
- String? projectId,
- List<String>? projectBeneficiaryId,
- List<String>? projectBeneficiaryClientReferenceId,
- String? createdBy,
- String? status,
- int? offset,
- int? limit,
- List<String>? clientReferenceId,
- String? tenantId,
- int? plannedStartDate,
- int? plannedEndDate,
- int? actualStartDate,
- int? actualEndDate,
- String? boundaryCode,
})
Implementation
@MappableConstructor()
TaskSearchModel.ignoreDeleted({
this.id,
this.projectId,
this.projectBeneficiaryId,
this.projectBeneficiaryClientReferenceId,
this.createdBy,
this.status,
this.offset,
this.limit,
this.clientReferenceId,
this.tenantId,
int? plannedStartDate,
int? plannedEndDate,
int? actualStartDate,
int? actualEndDate,
super.boundaryCode,
}) : plannedStartDateTime = plannedStartDate == null
? null
: DateTime.fromMillisecondsSinceEpoch(plannedStartDate),
plannedEndDateTime = plannedEndDate == null
? null
: DateTime.fromMillisecondsSinceEpoch(plannedEndDate),
actualStartDateTime = actualStartDate == null
? null
: DateTime.fromMillisecondsSinceEpoch(actualStartDate),
actualEndDateTime = actualEndDate == null
? null
: DateTime.fromMillisecondsSinceEpoch(actualEndDate),
super(isDeleted: false);