createTopic method

Future<EncryptedTopic> createTopic(
  1. EncryptedTopic entity
)

Implementation

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