scanBase64 method

Future<BarcodeResponseList> scanBase64(
  1. ScanBase64Request scanBase64Request
)

Scan barcode from file in request body using POST requests with parameter in body in json or xml format.

Implementation

Future<BarcodeResponseList> scanBase64(
    ScanBase64Request scanBase64Request) async {
  // ignore: prefer_final_locals
  Object? postBody = scanBase64Request;

  // create path and map variables
  final String requestPath = "/barcode/scan-body";

  // query params
  final List<QueryParam> queryParams = [];
  final Map<String, String> headerParams = {};
  final Map<String, String> formParams = {};

  final List<String> contentTypes = ["application/json", "application/xml"];

  final String contentType =
      contentTypes.isNotEmpty ? contentTypes[0] : "application/json";
  final List<String> authNames = ["JWT"];

  final response = await _apiClient.invokeAPI(
      requestPath,
      'POST',
      queryParams,
      postBody,
      headerParams,
      formParams,
      contentType,
      authNames);

  if (response.statusCode >= 400) {
    ApiErrorResponse error;
    try {
      error = _apiClient.deserialize(response.body, 'ApiErrorResponse');
    } catch (e) {
      throw ApiException(response.statusCode, response.body);
    }
    throw ApiException.withResponse(
        response.statusCode,
        response.reasonPhrase == null
            ? "Api response error"
            : response.reasonPhrase!,
        error);
  } else {
    return _apiClient.deserialize(response.body, 'BarcodeResponseList')
        as BarcodeResponseList;
  }
}