DidDocumentService constructor
Implementation
DidDocumentService({
required this.id,
required this.type,
required this.endpoint,
}) : assert(checkStringBytesLen(id, 64)),
assert(checkStringBytesLen(type, 64)),
assert(checkStringBytesLen(endpoint, 512));