undeleteTopicById method

Future<EncryptedTopic> undeleteTopicById(
  1. String id,
  2. String rev
)

Implementation

Future<EncryptedTopic> undeleteTopicById(String id, String rev) async {
	return await CardinalSdkPlatformInterface.instance.apis.topicBasic.undeleteTopicById(
		_sdkId,
		id,
		rev,
	);
}