currentDataOwnerKeys method

Future<Map<String, Map<CardinalRsaPublicKeyFingerprint, CardinalRsaPrivateKey>>> currentDataOwnerKeys({
  1. bool filterTrustedKeys = true,
})

Implementation

Future<Map<String, Map<CardinalRsaPublicKeyFingerprint, CardinalRsaPrivateKey>>> currentDataOwnerKeys({ bool filterTrustedKeys = true }) async {
	return await CardinalSdkPlatformInterface.instance.apis.crypto.currentDataOwnerKeys(
		_sdkId,
		filterTrustedKeys,
	);
}