Contribution constructor

Contribution({
  1. CheckpointEmbedded? embedded,
  2. ContributionLinks? links,
  3. DateTime? createdAt,
  4. String? id,
  5. String? type,
  6. DateTime? updatedAt,
})

Returns a new Contribution instance.

Implementation

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