CredentialApplication constructor

CredentialApplication({
  1. String? id,
  2. required String manifestId,
  3. String specVersion = 'https://identity.foundation/credential-manifest/spec/v1.0.0/',
  4. required FormatProperty format,
})

Implementation

CredentialApplication(
    {String? id,
    required this.manifestId,
    this.specVersion =
        'https://identity.foundation/credential-manifest/spec/v1.0.0/',
    required this.format})
    : id = id ?? Uuid().v4();