shareWithMany method

Future<AccessLog> shareWithMany(
  1. AccessLog accessLog,
  2. Map<String, AccessLogShareOptions> delegates
)

Implementation

Future<AccessLog> shareWithMany(AccessLog accessLog, Map<String, AccessLogShareOptions> delegates) async {
	return await CardinalSdkPlatformInterface.instance.apis.accessLog.tryAndRecover.shareWithMany(
		_sdkId,
		accessLog,
		delegates,
	);
}