DidDocument constructor

DidDocument({
  1. List<String>? context,
  2. required String id,
  3. List<String>? alsoKnownAs,
  4. dynamic controller,
  5. List<VerificationMethod>? verificationMethod,
  6. List? authentication,
  7. List? keyAgreement,
  8. List<ServiceEndpoint>? service,
  9. List? assertionMethod,
  10. List? capabilityDelegation,
  11. List? capabilityInvocation,
})

Implementation

DidDocument(
    {this.context,
    required this.id,
    this.alsoKnownAs,
    this.controller,
    this.verificationMethod,
    this.authentication,
    this.keyAgreement,
    this.service,
    this.assertionMethod,
    this.capabilityDelegation,
    this.capabilityInvocation});