deletePatientsByIds method
      
Future<List<StoredDocumentIdentifier> > 
deletePatientsByIds(
    
    
- List<StoredDocumentIdentifier> entityIds
Implementation
Future<List<StoredDocumentIdentifier>> deletePatientsByIds(List<StoredDocumentIdentifier> entityIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.patientBasic.deletePatientsByIds(
		_sdkId,
		entityIds,
	);
}