checkIfSMFPatientsExists method

Future<List<CheckSMFPatientResult>?> checkIfSMFPatientsExists(
  1. String documentId, {
  2. String? documentKey,
  3. String? patientId,
  4. String? language,
  5. Map<String, List<ImportMapping>>? requestBody,
})

Check whether patients in SMF already exists in DB

Parameters:

Implementation

Future<List<CheckSMFPatientResult>?> checkIfSMFPatientsExists(String documentId, { String? documentKey, String? patientId, String? language, Map<String, List<ImportMapping>>? requestBody, }) async {
  final response = await checkIfSMFPatientsExistsWithHttpInfo(documentId,  documentKey: documentKey, patientId: patientId, language: language, requestBody: requestBody, );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException.withRequestId(response.statusCode, await _decodeBodyBytes(response), response.headers["x-request-id"], response.request?.url.toString());
  }
  // When a remote server returns no body with a status of 204, we shall not decode it.
  // At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
  // FormatException when trying to decode an empty string.
  if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
    final responseBody = await _decodeBodyBytes(response);
    return (await apiClient.deserializeAsync(responseBody, 'List<CheckSMFPatientResult>') as List)
      .cast<CheckSMFPatientResult>()
      .toList();

  }
  return null;
}