generateBody method
Generate barcode using POST request with parameters in body in json or xml format.
Implementation
Future<Uint8List> generateBody(GenerateParams generateParams) async {
// ignore: prefer_final_locals
Object? postBody = generateParams;
// create path and map variables
final String requestPath = "/barcode/generate-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 response.bodyBytes;
}
}