createTopic method

Future<Topic> createTopic(
  1. Topic entity
)

Implementation

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