Operation constructor

Operation({
  1. DateTime? createDate,
  2. String? errorCode,
  3. String? errorMessage,
  4. String? id,
  5. OperationStatus? status,
  6. Map<OperationTargetType, String>? targets,
  7. OperationType? type,
  8. DateTime? updateDate,
})

Implementation

Operation({
  this.createDate,
  this.errorCode,
  this.errorMessage,
  this.id,
  this.status,
  this.targets,
  this.type,
  this.updateDate,
});