Signer constructor

Signer({
  1. InvitationEmbedded? embedded,
  2. SignerLinks? links,
  3. String? id,
  4. SignerSignature? signature,
  5. String? state,
  6. String? type,
})

Returns a new Signer instance.

Implementation

Signer({
  this.embedded,
  this.links,
  this.id,
  this.signature,
  this.state,
  this.type,
});