getTopics method

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

Implementation

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