Operation constructor

Operation({
  1. OperationEmbedded? embedded,
  2. OperationLinks? links,
  3. DateTime? createdAt,
  4. String? description,
  5. DateTime? dueBy,
  6. String? id,
  7. String? identificationNumber,
  8. String? name,
  9. OperationPriority? priority,
  10. DateTime? scheduledAt,
  11. OperationSignature? signature,
  12. List<String>? tags = const [],
  13. String? type,
  14. DateTime? updatedAt,
})

Returns a new Operation instance.

Implementation

Operation({
  this.embedded,
  this.links,
  this.createdAt,
  this.description,
  this.dueBy,
  this.id,
  this.identificationNumber,
  this.name,
  this.priority,
  this.scheduledAt,
  this.signature,
  this.tags = const [],
  this.type,
  this.updatedAt,
});