listFromJson static method
Implementation
static List<BarcodeResponse> listFromJson(List<dynamic> json) {
return json.map((value) => BarcodeResponse.fromJson(value)).toList();
}
static List<BarcodeResponse> listFromJson(List<dynamic> json) {
return json.map((value) => BarcodeResponse.fromJson(value)).toList();
}