getFullStatusOfProduct method
Get full status of product (scan endpoint)
Implementation
Future<Response> getFullStatusOfProduct(String barcode) async {
try {
return await _dio.post('scan/', data: {'barcode': barcode});
} catch (e) {
rethrow;
}
}