deleteTopics method

Future<List<DocIdentifier>> deleteTopics(
  1. List<Topic> topics
)

Implementation

Future<List<DocIdentifier>> deleteTopics(List<Topic> topics) async {
	return await CardinalSdkPlatformInterface.instance.apis.topicBasic.deleteTopics(
		_sdkId,
		topics,
	);
}