TaskResourceModel constructor

TaskResourceModel({
  1. TaskResourceAdditionalFields? additionalFields,
  2. required String clientReferenceId,
  3. String? taskclientReferenceId,
  4. String? taskId,
  5. String? id,
  6. String? productVariantId,
  7. String? quantity,
  8. bool? isDelivered,
  9. String? deliveryComment,
  10. bool? nonRecoverableError = false,
  11. String? tenantId,
  12. int? rowVersion,
  13. AuditDetails? auditDetails,
  14. ClientAuditDetails? clientAuditDetails,
  15. bool? isDeleted = false,
})

Implementation

TaskResourceModel({
  this.additionalFields,
  required this.clientReferenceId,
  this.taskclientReferenceId,
  this.taskId,
  this.id,
  this.productVariantId,
  this.quantity,
  this.isDelivered,
  this.deliveryComment,
  this.nonRecoverableError = false,
  this.tenantId,
  this.rowVersion,
  super.auditDetails,super.clientAuditDetails,
  super.isDeleted = false,
}): super();