shareWith method

Future<DecryptedAccessLog> shareWith(
  1. String delegateId,
  2. DecryptedAccessLog accessLog, {
  3. AccessLogShareOptions? options,
})

Implementation

Future<DecryptedAccessLog> shareWith(String delegateId, DecryptedAccessLog accessLog, { AccessLogShareOptions? options }) async {
	return await CardinalSdkPlatformInterface.instance.apis.accessLog.shareWith(
		_sdkId,
		delegateId,
		accessLog,
		options,
	);
}