deleteTopicsByIds method

Future<List<DocIdentifier>> deleteTopicsByIds(
  1. List<IdWithMandatoryRev> entityIds
)

Implementation

Future<List<DocIdentifier>> deleteTopicsByIds(List<IdWithMandatoryRev> entityIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.topicBasic.deleteTopicsByIds(
		_sdkId,
		entityIds,
	);
}