getEncryptionKeysOf method

Future<Set<HexString>> getEncryptionKeysOf(
  1. Document document
)

Implementation

Future<Set<HexString>> getEncryptionKeysOf(Document document) async {
	return await CardinalSdkPlatformInterface.instance.apis.document.getEncryptionKeysOf(
		_sdkId,
		document,
	);
}