Assignment constructor

Assignment({
  1. AssignmentEmbedded? embedded,
  2. AssignmentLinks? links,
  3. DateTime? createdAt,
  4. String? id,
  5. String? type,
  6. DateTime? updatedAt,
})

Returns a new Assignment instance.

Implementation

Assignment({
  this.embedded,
  this.links,
  this.createdAt,
  this.id,
  this.type,
  this.updatedAt,
});