CredentialManifest constructor
CredentialManifest({
- String? id,
- String? name,
- String? description,
- String specVersion = 'https://identity.foundation/credential-manifest/spec/v1.0.0/',
- required IssuerProperty issuer,
- required List<
OutputDescriptor> outputDescriptor, - FormatProperty? format,
- PresentationDefinition? presentationDefinition,
Implementation
CredentialManifest(
{String? id,
this.name,
this.description,
this.specVersion =
'https://identity.foundation/credential-manifest/spec/v1.0.0/',
required this.issuer,
required this.outputDescriptor,
this.format,
this.presentationDefinition})
: id = id ?? Uuid().v4();