deleteContactsByIds method

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

Implementation

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