Invitation constructor

Invitation({
  1. InvitationEmbedded? embedded,
  2. InvitationLinks? links,
  3. DateTime? createdAt,
  4. DateTime? expiredAt,
  5. String? id,
  6. String? type,
  7. DateTime? updatedAt,
})

Returns a new Invitation instance.

Implementation

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