undeleteTopic method

Future<Topic> undeleteTopic(
  1. Topic topic
)

Implementation

Future<Topic> undeleteTopic(Topic topic) async {
	return await CardinalSdkPlatformInterface.instance.apis.topicBasic.undeleteTopic(
		_sdkId,
		topic,
	);
}