isProductExistsInLiveNew method
Implementation
Future<GeneralResponse<dynamic>> isProductExistsInLiveNew(String barcode,
{String type = 'food'}) async {
return loadResponse(() async {
final response =
await _api.isProductExistsInLiveNew(barcode, type: type);
return response.data;
});
}