Member constructor

Member({
  1. MemberEmbedded? embedded,
  2. MemberLinks? links,
  3. MemberContactPoint? contactPoint,
  4. DateTime? createdAt,
  5. String? id,
  6. String? type,
  7. DateTime? updatedAt,
})

Returns a new Member instance.

Implementation

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