getTopic method

Future<EncryptedTopic?> getTopic(
  1. String entityId
)

Implementation

Future<EncryptedTopic?> getTopic(String entityId) async {
	return await CardinalSdkPlatformInterface.instance.apis.topic.encrypted.getTopic(
		_sdkId,
		entityId,
	);
}