VerificationMethod constructor
VerificationMethod({})
Implementation
VerificationMethod(
{required this.id,
required this.controller,
required this.type,
this.publicKeyJwk,
this.publicKeyMultibase}) {
if (publicKeyJwk == null && publicKeyMultibase == null) {
throw Exception(
'Verification Method must have an entry for a public key');
}
}