DocumentEmbedded constructor

DocumentEmbedded({
  1. Map<String, Object>? container,
  2. Person? createdBy,
  3. List<Signer>? signers = const [],
  4. List<String>? stateTransitions = const [],
  5. DocumentType? type,
})

Returns a new DocumentEmbedded instance.

Implementation

DocumentEmbedded({
  this.container,
  this.createdBy,
  this.signers = const [],
  this.stateTransitions = const [],
  this.type,
});