getTopics method

Future<List<DecryptedTopic>> getTopics(
  1. List<String> entityIds
)

Implementation

Future<List<DecryptedTopic>> getTopics(List<String> entityIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.topic.getTopics(
		_sdkId,
		entityIds,
	);
}