getAccessLog method

Future<AccessLog> getAccessLog(
  1. String entityId
)

Implementation

Future<AccessLog> getAccessLog(String entityId) async {
	return await CardinalSdkPlatformInterface.instance.apis.accessLog.tryAndRecover.getAccessLog(
		_sdkId,
		entityId,
	);
}