shareWith method

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

Implementation

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