CredentialsSupportedObject constructor

CredentialsSupportedObject({
  1. required String format,
  2. required List<String> type,
  3. String? id,
  4. List<String>? context,
  5. List<OidcDisplayObject>? display,
  6. Map<String, CredentialSubjectMetadata>? credentialSubject,
  7. List<String>? cryptographicBindingMethods,
  8. List<String>? cryptographicSuitesSupported,
  9. List<String>? order,
})

Implementation

CredentialsSupportedObject(
    {required this.format,
    required this.type,
    this.id,
    this.context,
    this.display,
    this.credentialSubject,
    this.cryptographicBindingMethods,
    this.cryptographicSuitesSupported,
    this.order});