deleteDocumentsByIds method

Future<List<DocIdentifier>> deleteDocumentsByIds(
  1. List<StoredDocumentIdentifier> entityIds
)

Implementation

Future<List<DocIdentifier>> deleteDocumentsByIds(List<StoredDocumentIdentifier> entityIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.documentBasic.deleteDocumentsByIds(
		_sdkId,
		entityIds,
	);
}