createTopic method

Future<DecryptedTopic> createTopic(
  1. DecryptedTopic entity
)

Implementation

Future<DecryptedTopic> createTopic(DecryptedTopic entity) async {
	return await CardinalSdkPlatformInterface.instance.apis.topic.createTopic(
		_sdkId,
		entity,
	);
}