Created
July 5, 2022 09:53
-
-
Save kzawadi/cc8603c7499d50368847801d206e1c4e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Product { | |
String? _code; | |
Product? _product; | |
int? _status; | |
String? _statusVerbose; | |
Product({String? code, Product? product, int? status, String? statusVerbose}) { | |
if (code != null) { | |
this._code = code; | |
} | |
if (product != null) { | |
this._product = product; | |
} | |
if (status != null) { | |
this._status = status; | |
} | |
if (statusVerbose != null) { | |
this._statusVerbose = statusVerbose; | |
} | |
} | |
String? get code => _code; | |
set code(String? code) => _code = code; | |
Product? get product => _product; | |
set product(Product? product) => _product = product; | |
int? get status => _status; | |
set status(int? status) => _status = status; | |
String? get statusVerbose => _statusVerbose; | |
set statusVerbose(String? statusVerbose) => _statusVerbose = statusVerbose; | |
Product.fromJson(Map<String, dynamic> json) { | |
_code = json['code']; | |
_product = json['product'] != null ? new Product.fromJson(json['product']) : null; | |
_status = json['status']; | |
_statusVerbose = json['status_verbose']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['code'] = this._code; | |
if (this._product != null) { | |
data['product'] = this._product!.toJson(); | |
} | |
data['status'] = this._status; | |
data['status_verbose'] = this._statusVerbose; | |
return data; | |
} | |
} | |
class Product { | |
String? _sId; | |
List<String>? _lKeywords; | |
List<Null>? _addedCountriesTags; | |
List<Null>? _additivesDebugTags; | |
int? _additivesN; | |
int? _additivesOldN; | |
List<String>? _additivesOldTags; | |
List<String>? _additivesOriginalTags; | |
List<String>? _additivesPrevOriginalTags; | |
List<String>? _additivesTags; | |
String? _allergens; | |
String? _allergensFromIngredients; | |
String? _allergensFromUser; | |
List<Null>? _allergensHierarchy; | |
String? _allergensLc; | |
List<Null>? _allergensTags; | |
List<Null>? _aminoAcidsPrevTags; | |
List<Null>? _aminoAcidsTags; | |
String? _brands; | |
List<String>? _brandsTags; | |
String? _categories; | |
List<String>? _categoriesHierarchy; | |
String? _categoriesLc; | |
String? _categoriesOld; | |
CategoriesProperties? _categoriesProperties; | |
List<String>? _categoriesPropertiesTags; | |
List<String>? _categoriesTags; | |
CategoryProperties? _categoryProperties; | |
List<Null>? _checkers; | |
List<Null>? _checkersTags; | |
List<String>? _ciqualFoodNameTags; | |
List<Null>? _citiesTags; | |
String? _code; | |
List<String>? _codesTags; | |
String? _comparedToCategory; | |
int? _complete; | |
double? _completeness; | |
List<Null>? _correctors; | |
List<String>? _correctorsTags; | |
String? _countries; | |
String? _countriesBeforescanbot; | |
List<String>? _countriesHierarchy; | |
String? _countriesLc; | |
List<String>? _countriesTags; | |
int? _createdT; | |
String? _creator; | |
List<Null>? _dataQualityBugsTags; | |
List<Null>? _dataQualityErrorsTags; | |
List<String>? _dataQualityInfoTags; | |
List<String>? _dataQualityTags; | |
List<Null>? _dataQualityWarningsTags; | |
String? _dataSources; | |
List<String>? _dataSourcesTags; | |
List<String>? _debugParamSortedLangs; | |
EcoscoreData? _ecoscoreData; | |
EcoscoreExtendedData? _ecoscoreExtendedData; | |
String? _ecoscoreExtendedDataVersion; | |
String? _ecoscoreGrade; | |
List<String>? _ecoscoreTags; | |
List<String>? _editors; | |
List<String>? _editorsTags; | |
String? _embCodes; | |
String? _embCodes20141016; | |
String? _embCodesOrig; | |
List<Null>? _embCodesTags; | |
List<String>? _entryDatesTags; | |
String? _environmentImpactLevel; | |
List<Null>? _environmentImpactLevelTags; | |
String? _expirationDate; | |
String? _foodGroups; | |
List<String>? _foodGroupsTags; | |
int? _fruitsVegetablesNuts100gEstimate; | |
String? _genericName; | |
String? _genericNameAz; | |
String? _genericNameBg; | |
String? _genericNameDe; | |
String? _genericNameEn; | |
String? _genericNameFr; | |
String? _genericNameHr; | |
String? _genericNameHu; | |
String? _genericNamePl; | |
String? _genericNamePt; | |
String? _genericNameRo; | |
String? _genericNameSl; | |
String? _id; | |
String? _imageFrontSmallUrl; | |
String? _imageFrontThumbUrl; | |
String? _imageFrontUrl; | |
String? _imageIngredientsSmallUrl; | |
String? _imageIngredientsThumbUrl; | |
String? _imageIngredientsUrl; | |
String? _imageNutritionSmallUrl; | |
String? _imageNutritionThumbUrl; | |
String? _imageNutritionUrl; | |
String? _imagePackagingSmallUrl; | |
String? _imagePackagingThumbUrl; | |
String? _imagePackagingUrl; | |
String? _imageSmallUrl; | |
String? _imageThumbUrl; | |
String? _imageUrl; | |
Images? _images; | |
List<String>? _informers; | |
List<String>? _informersTags; | |
List<Ingredients>? _ingredients; | |
IngredientsAnalysis? _ingredientsAnalysis; | |
List<String>? _ingredientsAnalysisTags; | |
List<String>? _ingredientsDebug; | |
int? _ingredientsFromOrThatMayBeFromPalmOilN; | |
int? _ingredientsFromPalmOilN; | |
List<Null>? _ingredientsFromPalmOilTags; | |
List<String>? _ingredientsHierarchy; | |
List<String>? _ingredientsIdsDebug; | |
int? _ingredientsN; | |
List<String>? _ingredientsNTags; | |
List<String>? _ingredientsOriginalTags; | |
int? _ingredientsPercentAnalysis; | |
List<String>? _ingredientsTags; | |
String? _ingredientsText; | |
String? _ingredientsTextAz; | |
String? _ingredientsTextBg; | |
String? _ingredientsTextDe; | |
String? _ingredientsTextDebug; | |
String? _ingredientsTextEn; | |
String? _ingredientsTextFr; | |
String? _ingredientsTextHr; | |
String? _ingredientsTextHu; | |
String? _ingredientsTextPl; | |
String? _ingredientsTextPt; | |
String? _ingredientsTextRo; | |
String? _ingredientsTextSl; | |
String? _ingredientsTextWithAllergens; | |
String? _ingredientsTextWithAllergensAz; | |
String? _ingredientsTextWithAllergensBg; | |
String? _ingredientsTextWithAllergensDe; | |
String? _ingredientsTextWithAllergensEn; | |
String? _ingredientsTextWithAllergensFr; | |
String? _ingredientsTextWithAllergensHr; | |
String? _ingredientsTextWithAllergensHu; | |
String? _ingredientsTextWithAllergensPl; | |
String? _ingredientsTextWithAllergensPt; | |
String? _ingredientsTextWithAllergensRo; | |
String? _ingredientsTextWithAllergensSl; | |
int? _ingredientsThatMayBeFromPalmOilN; | |
List<Null>? _ingredientsThatMayBeFromPalmOilTags; | |
int? _ingredientsWithSpecifiedPercentN; | |
int? _ingredientsWithSpecifiedPercentSum; | |
int? _ingredientsWithUnspecifiedPercentN; | |
int? _ingredientsWithUnspecifiedPercentSum; | |
String? _interfaceVersionModified; | |
int? _knownIngredientsN; | |
String? _labels; | |
List<String>? _labelsHierarchy; | |
String? _labelsLc; | |
String? _labelsOld; | |
List<String>? _labelsTags; | |
String? _lang; | |
Languages? _languages; | |
LanguagesCodes? _languagesCodes; | |
List<String>? _languagesHierarchy; | |
List<String>? _languagesTags; | |
List<String>? _lastEditDatesTags; | |
String? _lastEditor; | |
List<String>? _lastImageDatesTags; | |
int? _lastImageT; | |
String? _lastModifiedBy; | |
int? _lastModifiedT; | |
String? _lc; | |
String? _link; | |
List<Null>? _mainCountriesTags; | |
String? _manufacturingPlaces; | |
List<Null>? _manufacturingPlacesTags; | |
String? _maxImgid; | |
List<Null>? _mineralsPrevTags; | |
List<Null>? _mineralsTags; | |
List<String>? _miscTags; | |
int? _newAdditivesN; | |
String? _noNutritionData; | |
int? _novaGroup; | |
String? _novaGroupDebug; | |
String? _novaGroups; | |
NovaGroupsMarkers? _novaGroupsMarkers; | |
List<String>? _novaGroupsTags; | |
List<Null>? _nucleotidesPrevTags; | |
List<Null>? _nucleotidesTags; | |
NutrientLevels? _nutrientLevels; | |
List<String>? _nutrientLevelsTags; | |
Nutriments? _nutriments; | |
NutriscoreData? _nutriscoreData; | |
String? _nutriscoreGrade; | |
int? _nutriscoreScore; | |
int? _nutriscoreScoreOpposite; | |
String? _nutritionData; | |
String? _nutritionDataPer; | |
String? _nutritionDataPrepared; | |
String? _nutritionDataPreparedPer; | |
String? _nutritionGradeFr; | |
String? _nutritionGrades; | |
List<String>? _nutritionGradesTags; | |
int? _nutritionScoreBeverage; | |
String? _nutritionScoreDebug; | |
int? _nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredients; | |
int? _nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredientsValue; | |
String? _obsolete; | |
String? _obsoleteSinceDate; | |
String? _origin; | |
String? _originAz; | |
String? _originBg; | |
String? _originDe; | |
String? _originEn; | |
String? _originFr; | |
String? _originHr; | |
String? _originHu; | |
String? _originPl; | |
String? _originPt; | |
String? _originRo; | |
String? _originSl; | |
String? _origins; | |
List<Null>? _originsHierarchy; | |
String? _originsLc; | |
String? _originsOld; | |
List<Null>? _originsTags; | |
List<Null>? _otherNutritionalSubstancesTags; | |
String? _packaging; | |
List<String>? _packagingHierarchy; | |
String? _packagingLc; | |
String? _packagingOld; | |
String? _packagingOldBeforeTaxonomization; | |
List<String>? _packagingTags; | |
String? _packagingText; | |
String? _packagingTextAz; | |
String? _packagingTextBg; | |
String? _packagingTextDe; | |
String? _packagingTextEn; | |
String? _packagingTextFr; | |
String? _packagingTextHr; | |
String? _packagingTextHu; | |
String? _packagingTextPl; | |
String? _packagingTextPt; | |
String? _packagingTextRo; | |
String? _packagingTextSl; | |
List<Packagings>? _packagings; | |
List<String>? _photographers; | |
List<String>? _photographersTags; | |
String? _pnnsGroups1; | |
List<String>? _pnnsGroups1Tags; | |
String? _pnnsGroups2; | |
List<String>? _pnnsGroups2Tags; | |
int? _popularityKey; | |
List<String>? _popularityTags; | |
String? _productName; | |
String? _productNameAz; | |
String? _productNameBg; | |
String? _productNameDe; | |
String? _productNameEn; | |
String? _productNameFr; | |
String? _productNameHr; | |
String? _productNameHu; | |
String? _productNamePl; | |
String? _productNamePt; | |
String? _productNameRo; | |
String? _productNameSl; | |
String? _productQuantity; | |
String? _purchasePlaces; | |
List<String>? _purchasePlacesTags; | |
String? _quantity; | |
List<Null>? _removedCountriesTags; | |
int? _rev; | |
int? _scansN; | |
SelectedImages? _selectedImages; | |
String? _servingQuantity; | |
String? _servingSize; | |
int? _sortkey; | |
List<Sources>? _sources; | |
String? _states; | |
List<String>? _statesHierarchy; | |
List<String>? _statesTags; | |
String? _stores; | |
List<String>? _storesTags; | |
String? _teams; | |
List<String>? _teamsTags; | |
String? _traces; | |
String? _tracesFromIngredients; | |
String? _tracesFromUser; | |
List<String>? _tracesHierarchy; | |
String? _tracesLc; | |
List<String>? _tracesTags; | |
int? _uniqueScansN; | |
int? _unknownIngredientsN; | |
List<Null>? _unknownNutrientsTags; | |
String? _updateKey; | |
List<Null>? _vitaminsPrevTags; | |
List<Null>? _vitaminsTags; | |
Product({String? sId, List<String>? lKeywords, List<Null>? addedCountriesTags, List<Null>? additivesDebugTags, int? additivesN, int? additivesOldN, List<String>? additivesOldTags, List<String>? additivesOriginalTags, List<String>? additivesPrevOriginalTags, List<String>? additivesTags, String? allergens, String? allergensFromIngredients, String? allergensFromUser, List<Null>? allergensHierarchy, String? allergensLc, List<Null>? allergensTags, List<Null>? aminoAcidsPrevTags, List<Null>? aminoAcidsTags, String? brands, List<String>? brandsTags, String? categories, List<String>? categoriesHierarchy, String? categoriesLc, String? categoriesOld, CategoriesProperties? categoriesProperties, List<String>? categoriesPropertiesTags, List<String>? categoriesTags, CategoryProperties? categoryProperties, List<Null>? checkers, List<Null>? checkersTags, List<String>? ciqualFoodNameTags, List<Null>? citiesTags, String? code, List<String>? codesTags, String? comparedToCategory, int? complete, double? completeness, List<Null>? correctors, List<String>? correctorsTags, String? countries, String? countriesBeforescanbot, List<String>? countriesHierarchy, String? countriesLc, List<String>? countriesTags, int? createdT, String? creator, List<Null>? dataQualityBugsTags, List<Null>? dataQualityErrorsTags, List<String>? dataQualityInfoTags, List<String>? dataQualityTags, List<Null>? dataQualityWarningsTags, String? dataSources, List<String>? dataSourcesTags, List<String>? debugParamSortedLangs, EcoscoreData? ecoscoreData, EcoscoreExtendedData? ecoscoreExtendedData, String? ecoscoreExtendedDataVersion, String? ecoscoreGrade, List<String>? ecoscoreTags, List<String>? editors, List<String>? editorsTags, String? embCodes, String? embCodes20141016, String? embCodesOrig, List<Null>? embCodesTags, List<String>? entryDatesTags, String? environmentImpactLevel, List<Null>? environmentImpactLevelTags, String? expirationDate, String? foodGroups, List<String>? foodGroupsTags, int? fruitsVegetablesNuts100gEstimate, String? genericName, String? genericNameAz, String? genericNameBg, String? genericNameDe, String? genericNameEn, String? genericNameFr, String? genericNameHr, String? genericNameHu, String? genericNamePl, String? genericNamePt, String? genericNameRo, String? genericNameSl, String? id, String? imageFrontSmallUrl, String? imageFrontThumbUrl, String? imageFrontUrl, String? imageIngredientsSmallUrl, String? imageIngredientsThumbUrl, String? imageIngredientsUrl, String? imageNutritionSmallUrl, String? imageNutritionThumbUrl, String? imageNutritionUrl, String? imagePackagingSmallUrl, String? imagePackagingThumbUrl, String? imagePackagingUrl, String? imageSmallUrl, String? imageThumbUrl, String? imageUrl, Images? images, List<String>? informers, List<String>? informersTags, List<Ingredients>? ingredients, IngredientsAnalysis? ingredientsAnalysis, List<String>? ingredientsAnalysisTags, List<String>? ingredientsDebug, int? ingredientsFromOrThatMayBeFromPalmOilN, int? ingredientsFromPalmOilN, List<Null>? ingredientsFromPalmOilTags, List<String>? ingredientsHierarchy, List<String>? ingredientsIdsDebug, int? ingredientsN, List<String>? ingredientsNTags, List<String>? ingredientsOriginalTags, int? ingredientsPercentAnalysis, List<String>? ingredientsTags, String? ingredientsText, String? ingredientsTextAz, String? ingredientsTextBg, String? ingredientsTextDe, String? ingredientsTextDebug, String? ingredientsTextEn, String? ingredientsTextFr, String? ingredientsTextHr, String? ingredientsTextHu, String? ingredientsTextPl, String? ingredientsTextPt, String? ingredientsTextRo, String? ingredientsTextSl, String? ingredientsTextWithAllergens, String? ingredientsTextWithAllergensAz, String? ingredientsTextWithAllergensBg, String? ingredientsTextWithAllergensDe, String? ingredientsTextWithAllergensEn, String? ingredientsTextWithAllergensFr, String? ingredientsTextWithAllergensHr, String? ingredientsTextWithAllergensHu, String? ingredientsTextWithAllergensPl, String? ingredientsTextWithAllergensPt, String? ingredientsTextWithAllergensRo, String? ingredientsTextWithAllergensSl, int? ingredientsThatMayBeFromPalmOilN, List<Null>? ingredientsThatMayBeFromPalmOilTags, int? ingredientsWithSpecifiedPercentN, int? ingredientsWithSpecifiedPercentSum, int? ingredientsWithUnspecifiedPercentN, int? ingredientsWithUnspecifiedPercentSum, String? interfaceVersionModified, int? knownIngredientsN, String? labels, List<String>? labelsHierarchy, String? labelsLc, String? labelsOld, List<String>? labelsTags, String? lang, Languages? languages, LanguagesCodes? languagesCodes, List<String>? languagesHierarchy, List<String>? languagesTags, List<String>? lastEditDatesTags, String? lastEditor, List<String>? lastImageDatesTags, int? lastImageT, String? lastModifiedBy, int? lastModifiedT, String? lc, String? link, List<Null>? mainCountriesTags, String? manufacturingPlaces, List<Null>? manufacturingPlacesTags, String? maxImgid, List<Null>? mineralsPrevTags, List<Null>? mineralsTags, List<String>? miscTags, int? newAdditivesN, String? noNutritionData, int? novaGroup, String? novaGroupDebug, String? novaGroups, NovaGroupsMarkers? novaGroupsMarkers, List<String>? novaGroupsTags, List<Null>? nucleotidesPrevTags, List<Null>? nucleotidesTags, NutrientLevels? nutrientLevels, List<String>? nutrientLevelsTags, Nutriments? nutriments, NutriscoreData? nutriscoreData, String? nutriscoreGrade, int? nutriscoreScore, int? nutriscoreScoreOpposite, String? nutritionData, String? nutritionDataPer, String? nutritionDataPrepared, String? nutritionDataPreparedPer, String? nutritionGradeFr, String? nutritionGrades, List<String>? nutritionGradesTags, int? nutritionScoreBeverage, String? nutritionScoreDebug, int? nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredients, int? nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredientsValue, String? obsolete, String? obsoleteSinceDate, String? origin, String? originAz, String? originBg, String? originDe, String? originEn, String? originFr, String? originHr, String? originHu, String? originPl, String? originPt, String? originRo, String? originSl, String? origins, List<Null>? originsHierarchy, String? originsLc, String? originsOld, List<Null>? originsTags, List<Null>? otherNutritionalSubstancesTags, String? packaging, List<String>? packagingHierarchy, String? packagingLc, String? packagingOld, String? packagingOldBeforeTaxonomization, List<String>? packagingTags, String? packagingText, String? packagingTextAz, String? packagingTextBg, String? packagingTextDe, String? packagingTextEn, String? packagingTextFr, String? packagingTextHr, String? packagingTextHu, String? packagingTextPl, String? packagingTextPt, String? packagingTextRo, String? packagingTextSl, List<Packagings>? packagings, List<String>? photographers, List<String>? photographersTags, String? pnnsGroups1, List<String>? pnnsGroups1Tags, String? pnnsGroups2, List<String>? pnnsGroups2Tags, int? popularityKey, List<String>? popularityTags, String? productName, String? productNameAz, String? productNameBg, String? productNameDe, String? productNameEn, String? productNameFr, String? productNameHr, String? productNameHu, String? productNamePl, String? productNamePt, String? productNameRo, String? productNameSl, String? productQuantity, String? purchasePlaces, List<String>? purchasePlacesTags, String? quantity, List<Null>? removedCountriesTags, int? rev, int? scansN, SelectedImages? selectedImages, String? servingQuantity, String? servingSize, int? sortkey, List<Sources>? sources, String? states, List<String>? statesHierarchy, List<String>? statesTags, String? stores, List<String>? storesTags, String? teams, List<String>? teamsTags, String? traces, String? tracesFromIngredients, String? tracesFromUser, List<String>? tracesHierarchy, String? tracesLc, List<String>? tracesTags, int? uniqueScansN, int? unknownIngredientsN, List<Null>? unknownNutrientsTags, String? updateKey, List<Null>? vitaminsPrevTags, List<Null>? vitaminsTags}) { | |
if (sId != null) { | |
this._sId = sId; | |
} | |
if (lKeywords != null) { | |
this._lKeywords = lKeywords; | |
} | |
if (addedCountriesTags != null) { | |
this._addedCountriesTags = addedCountriesTags; | |
} | |
if (additivesDebugTags != null) { | |
this._additivesDebugTags = additivesDebugTags; | |
} | |
if (additivesN != null) { | |
this._additivesN = additivesN; | |
} | |
if (additivesOldN != null) { | |
this._additivesOldN = additivesOldN; | |
} | |
if (additivesOldTags != null) { | |
this._additivesOldTags = additivesOldTags; | |
} | |
if (additivesOriginalTags != null) { | |
this._additivesOriginalTags = additivesOriginalTags; | |
} | |
if (additivesPrevOriginalTags != null) { | |
this._additivesPrevOriginalTags = additivesPrevOriginalTags; | |
} | |
if (additivesTags != null) { | |
this._additivesTags = additivesTags; | |
} | |
if (allergens != null) { | |
this._allergens = allergens; | |
} | |
if (allergensFromIngredients != null) { | |
this._allergensFromIngredients = allergensFromIngredients; | |
} | |
if (allergensFromUser != null) { | |
this._allergensFromUser = allergensFromUser; | |
} | |
if (allergensHierarchy != null) { | |
this._allergensHierarchy = allergensHierarchy; | |
} | |
if (allergensLc != null) { | |
this._allergensLc = allergensLc; | |
} | |
if (allergensTags != null) { | |
this._allergensTags = allergensTags; | |
} | |
if (aminoAcidsPrevTags != null) { | |
this._aminoAcidsPrevTags = aminoAcidsPrevTags; | |
} | |
if (aminoAcidsTags != null) { | |
this._aminoAcidsTags = aminoAcidsTags; | |
} | |
if (brands != null) { | |
this._brands = brands; | |
} | |
if (brandsTags != null) { | |
this._brandsTags = brandsTags; | |
} | |
if (categories != null) { | |
this._categories = categories; | |
} | |
if (categoriesHierarchy != null) { | |
this._categoriesHierarchy = categoriesHierarchy; | |
} | |
if (categoriesLc != null) { | |
this._categoriesLc = categoriesLc; | |
} | |
if (categoriesOld != null) { | |
this._categoriesOld = categoriesOld; | |
} | |
if (categoriesProperties != null) { | |
this._categoriesProperties = categoriesProperties; | |
} | |
if (categoriesPropertiesTags != null) { | |
this._categoriesPropertiesTags = categoriesPropertiesTags; | |
} | |
if (categoriesTags != null) { | |
this._categoriesTags = categoriesTags; | |
} | |
if (categoryProperties != null) { | |
this._categoryProperties = categoryProperties; | |
} | |
if (checkers != null) { | |
this._checkers = checkers; | |
} | |
if (checkersTags != null) { | |
this._checkersTags = checkersTags; | |
} | |
if (ciqualFoodNameTags != null) { | |
this._ciqualFoodNameTags = ciqualFoodNameTags; | |
} | |
if (citiesTags != null) { | |
this._citiesTags = citiesTags; | |
} | |
if (code != null) { | |
this._code = code; | |
} | |
if (codesTags != null) { | |
this._codesTags = codesTags; | |
} | |
if (comparedToCategory != null) { | |
this._comparedToCategory = comparedToCategory; | |
} | |
if (complete != null) { | |
this._complete = complete; | |
} | |
if (completeness != null) { | |
this._completeness = completeness; | |
} | |
if (correctors != null) { | |
this._correctors = correctors; | |
} | |
if (correctorsTags != null) { | |
this._correctorsTags = correctorsTags; | |
} | |
if (countries != null) { | |
this._countries = countries; | |
} | |
if (countriesBeforescanbot != null) { | |
this._countriesBeforescanbot = countriesBeforescanbot; | |
} | |
if (countriesHierarchy != null) { | |
this._countriesHierarchy = countriesHierarchy; | |
} | |
if (countriesLc != null) { | |
this._countriesLc = countriesLc; | |
} | |
if (countriesTags != null) { | |
this._countriesTags = countriesTags; | |
} | |
if (createdT != null) { | |
this._createdT = createdT; | |
} | |
if (creator != null) { | |
this._creator = creator; | |
} | |
if (dataQualityBugsTags != null) { | |
this._dataQualityBugsTags = dataQualityBugsTags; | |
} | |
if (dataQualityErrorsTags != null) { | |
this._dataQualityErrorsTags = dataQualityErrorsTags; | |
} | |
if (dataQualityInfoTags != null) { | |
this._dataQualityInfoTags = dataQualityInfoTags; | |
} | |
if (dataQualityTags != null) { | |
this._dataQualityTags = dataQualityTags; | |
} | |
if (dataQualityWarningsTags != null) { | |
this._dataQualityWarningsTags = dataQualityWarningsTags; | |
} | |
if (dataSources != null) { | |
this._dataSources = dataSources; | |
} | |
if (dataSourcesTags != null) { | |
this._dataSourcesTags = dataSourcesTags; | |
} | |
if (debugParamSortedLangs != null) { | |
this._debugParamSortedLangs = debugParamSortedLangs; | |
} | |
if (ecoscoreData != null) { | |
this._ecoscoreData = ecoscoreData; | |
} | |
if (ecoscoreExtendedData != null) { | |
this._ecoscoreExtendedData = ecoscoreExtendedData; | |
} | |
if (ecoscoreExtendedDataVersion != null) { | |
this._ecoscoreExtendedDataVersion = ecoscoreExtendedDataVersion; | |
} | |
if (ecoscoreGrade != null) { | |
this._ecoscoreGrade = ecoscoreGrade; | |
} | |
if (ecoscoreTags != null) { | |
this._ecoscoreTags = ecoscoreTags; | |
} | |
if (editors != null) { | |
this._editors = editors; | |
} | |
if (editorsTags != null) { | |
this._editorsTags = editorsTags; | |
} | |
if (embCodes != null) { | |
this._embCodes = embCodes; | |
} | |
if (embCodes20141016 != null) { | |
this._embCodes20141016 = embCodes20141016; | |
} | |
if (embCodesOrig != null) { | |
this._embCodesOrig = embCodesOrig; | |
} | |
if (embCodesTags != null) { | |
this._embCodesTags = embCodesTags; | |
} | |
if (entryDatesTags != null) { | |
this._entryDatesTags = entryDatesTags; | |
} | |
if (environmentImpactLevel != null) { | |
this._environmentImpactLevel = environmentImpactLevel; | |
} | |
if (environmentImpactLevelTags != null) { | |
this._environmentImpactLevelTags = environmentImpactLevelTags; | |
} | |
if (expirationDate != null) { | |
this._expirationDate = expirationDate; | |
} | |
if (foodGroups != null) { | |
this._foodGroups = foodGroups; | |
} | |
if (foodGroupsTags != null) { | |
this._foodGroupsTags = foodGroupsTags; | |
} | |
if (fruitsVegetablesNuts100gEstimate != null) { | |
this._fruitsVegetablesNuts100gEstimate = fruitsVegetablesNuts100gEstimate; | |
} | |
if (genericName != null) { | |
this._genericName = genericName; | |
} | |
if (genericNameAz != null) { | |
this._genericNameAz = genericNameAz; | |
} | |
if (genericNameBg != null) { | |
this._genericNameBg = genericNameBg; | |
} | |
if (genericNameDe != null) { | |
this._genericNameDe = genericNameDe; | |
} | |
if (genericNameEn != null) { | |
this._genericNameEn = genericNameEn; | |
} | |
if (genericNameFr != null) { | |
this._genericNameFr = genericNameFr; | |
} | |
if (genericNameHr != null) { | |
this._genericNameHr = genericNameHr; | |
} | |
if (genericNameHu != null) { | |
this._genericNameHu = genericNameHu; | |
} | |
if (genericNamePl != null) { | |
this._genericNamePl = genericNamePl; | |
} | |
if (genericNamePt != null) { | |
this._genericNamePt = genericNamePt; | |
} | |
if (genericNameRo != null) { | |
this._genericNameRo = genericNameRo; | |
} | |
if (genericNameSl != null) { | |
this._genericNameSl = genericNameSl; | |
} | |
if (id != null) { | |
this._id = id; | |
} | |
if (imageFrontSmallUrl != null) { | |
this._imageFrontSmallUrl = imageFrontSmallUrl; | |
} | |
if (imageFrontThumbUrl != null) { | |
this._imageFrontThumbUrl = imageFrontThumbUrl; | |
} | |
if (imageFrontUrl != null) { | |
this._imageFrontUrl = imageFrontUrl; | |
} | |
if (imageIngredientsSmallUrl != null) { | |
this._imageIngredientsSmallUrl = imageIngredientsSmallUrl; | |
} | |
if (imageIngredientsThumbUrl != null) { | |
this._imageIngredientsThumbUrl = imageIngredientsThumbUrl; | |
} | |
if (imageIngredientsUrl != null) { | |
this._imageIngredientsUrl = imageIngredientsUrl; | |
} | |
if (imageNutritionSmallUrl != null) { | |
this._imageNutritionSmallUrl = imageNutritionSmallUrl; | |
} | |
if (imageNutritionThumbUrl != null) { | |
this._imageNutritionThumbUrl = imageNutritionThumbUrl; | |
} | |
if (imageNutritionUrl != null) { | |
this._imageNutritionUrl = imageNutritionUrl; | |
} | |
if (imagePackagingSmallUrl != null) { | |
this._imagePackagingSmallUrl = imagePackagingSmallUrl; | |
} | |
if (imagePackagingThumbUrl != null) { | |
this._imagePackagingThumbUrl = imagePackagingThumbUrl; | |
} | |
if (imagePackagingUrl != null) { | |
this._imagePackagingUrl = imagePackagingUrl; | |
} | |
if (imageSmallUrl != null) { | |
this._imageSmallUrl = imageSmallUrl; | |
} | |
if (imageThumbUrl != null) { | |
this._imageThumbUrl = imageThumbUrl; | |
} | |
if (imageUrl != null) { | |
this._imageUrl = imageUrl; | |
} | |
if (images != null) { | |
this._images = images; | |
} | |
if (informers != null) { | |
this._informers = informers; | |
} | |
if (informersTags != null) { | |
this._informersTags = informersTags; | |
} | |
if (ingredients != null) { | |
this._ingredients = ingredients; | |
} | |
if (ingredientsAnalysis != null) { | |
this._ingredientsAnalysis = ingredientsAnalysis; | |
} | |
if (ingredientsAnalysisTags != null) { | |
this._ingredientsAnalysisTags = ingredientsAnalysisTags; | |
} | |
if (ingredientsDebug != null) { | |
this._ingredientsDebug = ingredientsDebug; | |
} | |
if (ingredientsFromOrThatMayBeFromPalmOilN != null) { | |
this._ingredientsFromOrThatMayBeFromPalmOilN = ingredientsFromOrThatMayBeFromPalmOilN; | |
} | |
if (ingredientsFromPalmOilN != null) { | |
this._ingredientsFromPalmOilN = ingredientsFromPalmOilN; | |
} | |
if (ingredientsFromPalmOilTags != null) { | |
this._ingredientsFromPalmOilTags = ingredientsFromPalmOilTags; | |
} | |
if (ingredientsHierarchy != null) { | |
this._ingredientsHierarchy = ingredientsHierarchy; | |
} | |
if (ingredientsIdsDebug != null) { | |
this._ingredientsIdsDebug = ingredientsIdsDebug; | |
} | |
if (ingredientsN != null) { | |
this._ingredientsN = ingredientsN; | |
} | |
if (ingredientsNTags != null) { | |
this._ingredientsNTags = ingredientsNTags; | |
} | |
if (ingredientsOriginalTags != null) { | |
this._ingredientsOriginalTags = ingredientsOriginalTags; | |
} | |
if (ingredientsPercentAnalysis != null) { | |
this._ingredientsPercentAnalysis = ingredientsPercentAnalysis; | |
} | |
if (ingredientsTags != null) { | |
this._ingredientsTags = ingredientsTags; | |
} | |
if (ingredientsText != null) { | |
this._ingredientsText = ingredientsText; | |
} | |
if (ingredientsTextAz != null) { | |
this._ingredientsTextAz = ingredientsTextAz; | |
} | |
if (ingredientsTextBg != null) { | |
this._ingredientsTextBg = ingredientsTextBg; | |
} | |
if (ingredientsTextDe != null) { | |
this._ingredientsTextDe = ingredientsTextDe; | |
} | |
if (ingredientsTextDebug != null) { | |
this._ingredientsTextDebug = ingredientsTextDebug; | |
} | |
if (ingredientsTextEn != null) { | |
this._ingredientsTextEn = ingredientsTextEn; | |
} | |
if (ingredientsTextFr != null) { | |
this._ingredientsTextFr = ingredientsTextFr; | |
} | |
if (ingredientsTextHr != null) { | |
this._ingredientsTextHr = ingredientsTextHr; | |
} | |
if (ingredientsTextHu != null) { | |
this._ingredientsTextHu = ingredientsTextHu; | |
} | |
if (ingredientsTextPl != null) { | |
this._ingredientsTextPl = ingredientsTextPl; | |
} | |
if (ingredientsTextPt != null) { | |
this._ingredientsTextPt = ingredientsTextPt; | |
} | |
if (ingredientsTextRo != null) { | |
this._ingredientsTextRo = ingredientsTextRo; | |
} | |
if (ingredientsTextSl != null) { | |
this._ingredientsTextSl = ingredientsTextSl; | |
} | |
if (ingredientsTextWithAllergens != null) { | |
this._ingredientsTextWithAllergens = ingredientsTextWithAllergens; | |
} | |
if (ingredientsTextWithAllergensAz != null) { | |
this._ingredientsTextWithAllergensAz = ingredientsTextWithAllergensAz; | |
} | |
if (ingredientsTextWithAllergensBg != null) { | |
this._ingredientsTextWithAllergensBg = ingredientsTextWithAllergensBg; | |
} | |
if (ingredientsTextWithAllergensDe != null) { | |
this._ingredientsTextWithAllergensDe = ingredientsTextWithAllergensDe; | |
} | |
if (ingredientsTextWithAllergensEn != null) { | |
this._ingredientsTextWithAllergensEn = ingredientsTextWithAllergensEn; | |
} | |
if (ingredientsTextWithAllergensFr != null) { | |
this._ingredientsTextWithAllergensFr = ingredientsTextWithAllergensFr; | |
} | |
if (ingredientsTextWithAllergensHr != null) { | |
this._ingredientsTextWithAllergensHr = ingredientsTextWithAllergensHr; | |
} | |
if (ingredientsTextWithAllergensHu != null) { | |
this._ingredientsTextWithAllergensHu = ingredientsTextWithAllergensHu; | |
} | |
if (ingredientsTextWithAllergensPl != null) { | |
this._ingredientsTextWithAllergensPl = ingredientsTextWithAllergensPl; | |
} | |
if (ingredientsTextWithAllergensPt != null) { | |
this._ingredientsTextWithAllergensPt = ingredientsTextWithAllergensPt; | |
} | |
if (ingredientsTextWithAllergensRo != null) { | |
this._ingredientsTextWithAllergensRo = ingredientsTextWithAllergensRo; | |
} | |
if (ingredientsTextWithAllergensSl != null) { | |
this._ingredientsTextWithAllergensSl = ingredientsTextWithAllergensSl; | |
} | |
if (ingredientsThatMayBeFromPalmOilN != null) { | |
this._ingredientsThatMayBeFromPalmOilN = ingredientsThatMayBeFromPalmOilN; | |
} | |
if (ingredientsThatMayBeFromPalmOilTags != null) { | |
this._ingredientsThatMayBeFromPalmOilTags = ingredientsThatMayBeFromPalmOilTags; | |
} | |
if (ingredientsWithSpecifiedPercentN != null) { | |
this._ingredientsWithSpecifiedPercentN = ingredientsWithSpecifiedPercentN; | |
} | |
if (ingredientsWithSpecifiedPercentSum != null) { | |
this._ingredientsWithSpecifiedPercentSum = ingredientsWithSpecifiedPercentSum; | |
} | |
if (ingredientsWithUnspecifiedPercentN != null) { | |
this._ingredientsWithUnspecifiedPercentN = ingredientsWithUnspecifiedPercentN; | |
} | |
if (ingredientsWithUnspecifiedPercentSum != null) { | |
this._ingredientsWithUnspecifiedPercentSum = ingredientsWithUnspecifiedPercentSum; | |
} | |
if (interfaceVersionModified != null) { | |
this._interfaceVersionModified = interfaceVersionModified; | |
} | |
if (knownIngredientsN != null) { | |
this._knownIngredientsN = knownIngredientsN; | |
} | |
if (labels != null) { | |
this._labels = labels; | |
} | |
if (labelsHierarchy != null) { | |
this._labelsHierarchy = labelsHierarchy; | |
} | |
if (labelsLc != null) { | |
this._labelsLc = labelsLc; | |
} | |
if (labelsOld != null) { | |
this._labelsOld = labelsOld; | |
} | |
if (labelsTags != null) { | |
this._labelsTags = labelsTags; | |
} | |
if (lang != null) { | |
this._lang = lang; | |
} | |
if (languages != null) { | |
this._languages = languages; | |
} | |
if (languagesCodes != null) { | |
this._languagesCodes = languagesCodes; | |
} | |
if (languagesHierarchy != null) { | |
this._languagesHierarchy = languagesHierarchy; | |
} | |
if (languagesTags != null) { | |
this._languagesTags = languagesTags; | |
} | |
if (lastEditDatesTags != null) { | |
this._lastEditDatesTags = lastEditDatesTags; | |
} | |
if (lastEditor != null) { | |
this._lastEditor = lastEditor; | |
} | |
if (lastImageDatesTags != null) { | |
this._lastImageDatesTags = lastImageDatesTags; | |
} | |
if (lastImageT != null) { | |
this._lastImageT = lastImageT; | |
} | |
if (lastModifiedBy != null) { | |
this._lastModifiedBy = lastModifiedBy; | |
} | |
if (lastModifiedT != null) { | |
this._lastModifiedT = lastModifiedT; | |
} | |
if (lc != null) { | |
this._lc = lc; | |
} | |
if (link != null) { | |
this._link = link; | |
} | |
if (mainCountriesTags != null) { | |
this._mainCountriesTags = mainCountriesTags; | |
} | |
if (manufacturingPlaces != null) { | |
this._manufacturingPlaces = manufacturingPlaces; | |
} | |
if (manufacturingPlacesTags != null) { | |
this._manufacturingPlacesTags = manufacturingPlacesTags; | |
} | |
if (maxImgid != null) { | |
this._maxImgid = maxImgid; | |
} | |
if (mineralsPrevTags != null) { | |
this._mineralsPrevTags = mineralsPrevTags; | |
} | |
if (mineralsTags != null) { | |
this._mineralsTags = mineralsTags; | |
} | |
if (miscTags != null) { | |
this._miscTags = miscTags; | |
} | |
if (newAdditivesN != null) { | |
this._newAdditivesN = newAdditivesN; | |
} | |
if (noNutritionData != null) { | |
this._noNutritionData = noNutritionData; | |
} | |
if (novaGroup != null) { | |
this._novaGroup = novaGroup; | |
} | |
if (novaGroupDebug != null) { | |
this._novaGroupDebug = novaGroupDebug; | |
} | |
if (novaGroups != null) { | |
this._novaGroups = novaGroups; | |
} | |
if (novaGroupsMarkers != null) { | |
this._novaGroupsMarkers = novaGroupsMarkers; | |
} | |
if (novaGroupsTags != null) { | |
this._novaGroupsTags = novaGroupsTags; | |
} | |
if (nucleotidesPrevTags != null) { | |
this._nucleotidesPrevTags = nucleotidesPrevTags; | |
} | |
if (nucleotidesTags != null) { | |
this._nucleotidesTags = nucleotidesTags; | |
} | |
if (nutrientLevels != null) { | |
this._nutrientLevels = nutrientLevels; | |
} | |
if (nutrientLevelsTags != null) { | |
this._nutrientLevelsTags = nutrientLevelsTags; | |
} | |
if (nutriments != null) { | |
this._nutriments = nutriments; | |
} | |
if (nutriscoreData != null) { | |
this._nutriscoreData = nutriscoreData; | |
} | |
if (nutriscoreGrade != null) { | |
this._nutriscoreGrade = nutriscoreGrade; | |
} | |
if (nutriscoreScore != null) { | |
this._nutriscoreScore = nutriscoreScore; | |
} | |
if (nutriscoreScoreOpposite != null) { | |
this._nutriscoreScoreOpposite = nutriscoreScoreOpposite; | |
} | |
if (nutritionData != null) { | |
this._nutritionData = nutritionData; | |
} | |
if (nutritionDataPer != null) { | |
this._nutritionDataPer = nutritionDataPer; | |
} | |
if (nutritionDataPrepared != null) { | |
this._nutritionDataPrepared = nutritionDataPrepared; | |
} | |
if (nutritionDataPreparedPer != null) { | |
this._nutritionDataPreparedPer = nutritionDataPreparedPer; | |
} | |
if (nutritionGradeFr != null) { | |
this._nutritionGradeFr = nutritionGradeFr; | |
} | |
if (nutritionGrades != null) { | |
this._nutritionGrades = nutritionGrades; | |
} | |
if (nutritionGradesTags != null) { | |
this._nutritionGradesTags = nutritionGradesTags; | |
} | |
if (nutritionScoreBeverage != null) { | |
this._nutritionScoreBeverage = nutritionScoreBeverage; | |
} | |
if (nutritionScoreDebug != null) { | |
this._nutritionScoreDebug = nutritionScoreDebug; | |
} | |
if (nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredients != null) { | |
this._nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredients = nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredients; | |
} | |
if (nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredientsValue != null) { | |
this._nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredientsValue = nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredientsValue; | |
} | |
if (obsolete != null) { | |
this._obsolete = obsolete; | |
} | |
if (obsoleteSinceDate != null) { | |
this._obsoleteSinceDate = obsoleteSinceDate; | |
} | |
if (origin != null) { | |
this._origin = origin; | |
} | |
if (originAz != null) { | |
this._originAz = originAz; | |
} | |
if (originBg != null) { | |
this._originBg = originBg; | |
} | |
if (originDe != null) { | |
this._originDe = originDe; | |
} | |
if (originEn != null) { | |
this._originEn = originEn; | |
} | |
if (originFr != null) { | |
this._originFr = originFr; | |
} | |
if (originHr != null) { | |
this._originHr = originHr; | |
} | |
if (originHu != null) { | |
this._originHu = originHu; | |
} | |
if (originPl != null) { | |
this._originPl = originPl; | |
} | |
if (originPt != null) { | |
this._originPt = originPt; | |
} | |
if (originRo != null) { | |
this._originRo = originRo; | |
} | |
if (originSl != null) { | |
this._originSl = originSl; | |
} | |
if (origins != null) { | |
this._origins = origins; | |
} | |
if (originsHierarchy != null) { | |
this._originsHierarchy = originsHierarchy; | |
} | |
if (originsLc != null) { | |
this._originsLc = originsLc; | |
} | |
if (originsOld != null) { | |
this._originsOld = originsOld; | |
} | |
if (originsTags != null) { | |
this._originsTags = originsTags; | |
} | |
if (otherNutritionalSubstancesTags != null) { | |
this._otherNutritionalSubstancesTags = otherNutritionalSubstancesTags; | |
} | |
if (packaging != null) { | |
this._packaging = packaging; | |
} | |
if (packagingHierarchy != null) { | |
this._packagingHierarchy = packagingHierarchy; | |
} | |
if (packagingLc != null) { | |
this._packagingLc = packagingLc; | |
} | |
if (packagingOld != null) { | |
this._packagingOld = packagingOld; | |
} | |
if (packagingOldBeforeTaxonomization != null) { | |
this._packagingOldBeforeTaxonomization = packagingOldBeforeTaxonomization; | |
} | |
if (packagingTags != null) { | |
this._packagingTags = packagingTags; | |
} | |
if (packagingText != null) { | |
this._packagingText = packagingText; | |
} | |
if (packagingTextAz != null) { | |
this._packagingTextAz = packagingTextAz; | |
} | |
if (packagingTextBg != null) { | |
this._packagingTextBg = packagingTextBg; | |
} | |
if (packagingTextDe != null) { | |
this._packagingTextDe = packagingTextDe; | |
} | |
if (packagingTextEn != null) { | |
this._packagingTextEn = packagingTextEn; | |
} | |
if (packagingTextFr != null) { | |
this._packagingTextFr = packagingTextFr; | |
} | |
if (packagingTextHr != null) { | |
this._packagingTextHr = packagingTextHr; | |
} | |
if (packagingTextHu != null) { | |
this._packagingTextHu = packagingTextHu; | |
} | |
if (packagingTextPl != null) { | |
this._packagingTextPl = packagingTextPl; | |
} | |
if (packagingTextPt != null) { | |
this._packagingTextPt = packagingTextPt; | |
} | |
if (packagingTextRo != null) { | |
this._packagingTextRo = packagingTextRo; | |
} | |
if (packagingTextSl != null) { | |
this._packagingTextSl = packagingTextSl; | |
} | |
if (packagings != null) { | |
this._packagings = packagings; | |
} | |
if (photographers != null) { | |
this._photographers = photographers; | |
} | |
if (photographersTags != null) { | |
this._photographersTags = photographersTags; | |
} | |
if (pnnsGroups1 != null) { | |
this._pnnsGroups1 = pnnsGroups1; | |
} | |
if (pnnsGroups1Tags != null) { | |
this._pnnsGroups1Tags = pnnsGroups1Tags; | |
} | |
if (pnnsGroups2 != null) { | |
this._pnnsGroups2 = pnnsGroups2; | |
} | |
if (pnnsGroups2Tags != null) { | |
this._pnnsGroups2Tags = pnnsGroups2Tags; | |
} | |
if (popularityKey != null) { | |
this._popularityKey = popularityKey; | |
} | |
if (popularityTags != null) { | |
this._popularityTags = popularityTags; | |
} | |
if (productName != null) { | |
this._productName = productName; | |
} | |
if (productNameAz != null) { | |
this._productNameAz = productNameAz; | |
} | |
if (productNameBg != null) { | |
this._productNameBg = productNameBg; | |
} | |
if (productNameDe != null) { | |
this._productNameDe = productNameDe; | |
} | |
if (productNameEn != null) { | |
this._productNameEn = productNameEn; | |
} | |
if (productNameFr != null) { | |
this._productNameFr = productNameFr; | |
} | |
if (productNameHr != null) { | |
this._productNameHr = productNameHr; | |
} | |
if (productNameHu != null) { | |
this._productNameHu = productNameHu; | |
} | |
if (productNamePl != null) { | |
this._productNamePl = productNamePl; | |
} | |
if (productNamePt != null) { | |
this._productNamePt = productNamePt; | |
} | |
if (productNameRo != null) { | |
this._productNameRo = productNameRo; | |
} | |
if (productNameSl != null) { | |
this._productNameSl = productNameSl; | |
} | |
if (productQuantity != null) { | |
this._productQuantity = productQuantity; | |
} | |
if (purchasePlaces != null) { | |
this._purchasePlaces = purchasePlaces; | |
} | |
if (purchasePlacesTags != null) { | |
this._purchasePlacesTags = purchasePlacesTags; | |
} | |
if (quantity != null) { | |
this._quantity = quantity; | |
} | |
if (removedCountriesTags != null) { | |
this._removedCountriesTags = removedCountriesTags; | |
} | |
if (rev != null) { | |
this._rev = rev; | |
} | |
if (scansN != null) { | |
this._scansN = scansN; | |
} | |
if (selectedImages != null) { | |
this._selectedImages = selectedImages; | |
} | |
if (servingQuantity != null) { | |
this._servingQuantity = servingQuantity; | |
} | |
if (servingSize != null) { | |
this._servingSize = servingSize; | |
} | |
if (sortkey != null) { | |
this._sortkey = sortkey; | |
} | |
if (sources != null) { | |
this._sources = sources; | |
} | |
if (states != null) { | |
this._states = states; | |
} | |
if (statesHierarchy != null) { | |
this._statesHierarchy = statesHierarchy; | |
} | |
if (statesTags != null) { | |
this._statesTags = statesTags; | |
} | |
if (stores != null) { | |
this._stores = stores; | |
} | |
if (storesTags != null) { | |
this._storesTags = storesTags; | |
} | |
if (teams != null) { | |
this._teams = teams; | |
} | |
if (teamsTags != null) { | |
this._teamsTags = teamsTags; | |
} | |
if (traces != null) { | |
this._traces = traces; | |
} | |
if (tracesFromIngredients != null) { | |
this._tracesFromIngredients = tracesFromIngredients; | |
} | |
if (tracesFromUser != null) { | |
this._tracesFromUser = tracesFromUser; | |
} | |
if (tracesHierarchy != null) { | |
this._tracesHierarchy = tracesHierarchy; | |
} | |
if (tracesLc != null) { | |
this._tracesLc = tracesLc; | |
} | |
if (tracesTags != null) { | |
this._tracesTags = tracesTags; | |
} | |
if (uniqueScansN != null) { | |
this._uniqueScansN = uniqueScansN; | |
} | |
if (unknownIngredientsN != null) { | |
this._unknownIngredientsN = unknownIngredientsN; | |
} | |
if (unknownNutrientsTags != null) { | |
this._unknownNutrientsTags = unknownNutrientsTags; | |
} | |
if (updateKey != null) { | |
this._updateKey = updateKey; | |
} | |
if (vitaminsPrevTags != null) { | |
this._vitaminsPrevTags = vitaminsPrevTags; | |
} | |
if (vitaminsTags != null) { | |
this._vitaminsTags = vitaminsTags; | |
} | |
} | |
String? get sId => _sId; | |
set sId(String? sId) => _sId = sId; | |
List<String>? get lKeywords => _lKeywords; | |
set lKeywords(List<String>? lKeywords) => _lKeywords = lKeywords; | |
List<Null>? get addedCountriesTags => _addedCountriesTags; | |
set addedCountriesTags(List<Null>? addedCountriesTags) => _addedCountriesTags = addedCountriesTags; | |
List<Null>? get additivesDebugTags => _additivesDebugTags; | |
set additivesDebugTags(List<Null>? additivesDebugTags) => _additivesDebugTags = additivesDebugTags; | |
int? get additivesN => _additivesN; | |
set additivesN(int? additivesN) => _additivesN = additivesN; | |
int? get additivesOldN => _additivesOldN; | |
set additivesOldN(int? additivesOldN) => _additivesOldN = additivesOldN; | |
List<String>? get additivesOldTags => _additivesOldTags; | |
set additivesOldTags(List<String>? additivesOldTags) => _additivesOldTags = additivesOldTags; | |
List<String>? get additivesOriginalTags => _additivesOriginalTags; | |
set additivesOriginalTags(List<String>? additivesOriginalTags) => _additivesOriginalTags = additivesOriginalTags; | |
List<String>? get additivesPrevOriginalTags => _additivesPrevOriginalTags; | |
set additivesPrevOriginalTags(List<String>? additivesPrevOriginalTags) => _additivesPrevOriginalTags = additivesPrevOriginalTags; | |
List<String>? get additivesTags => _additivesTags; | |
set additivesTags(List<String>? additivesTags) => _additivesTags = additivesTags; | |
String? get allergens => _allergens; | |
set allergens(String? allergens) => _allergens = allergens; | |
String? get allergensFromIngredients => _allergensFromIngredients; | |
set allergensFromIngredients(String? allergensFromIngredients) => _allergensFromIngredients = allergensFromIngredients; | |
String? get allergensFromUser => _allergensFromUser; | |
set allergensFromUser(String? allergensFromUser) => _allergensFromUser = allergensFromUser; | |
List<Null>? get allergensHierarchy => _allergensHierarchy; | |
set allergensHierarchy(List<Null>? allergensHierarchy) => _allergensHierarchy = allergensHierarchy; | |
String? get allergensLc => _allergensLc; | |
set allergensLc(String? allergensLc) => _allergensLc = allergensLc; | |
List<Null>? get allergensTags => _allergensTags; | |
set allergensTags(List<Null>? allergensTags) => _allergensTags = allergensTags; | |
List<Null>? get aminoAcidsPrevTags => _aminoAcidsPrevTags; | |
set aminoAcidsPrevTags(List<Null>? aminoAcidsPrevTags) => _aminoAcidsPrevTags = aminoAcidsPrevTags; | |
List<Null>? get aminoAcidsTags => _aminoAcidsTags; | |
set aminoAcidsTags(List<Null>? aminoAcidsTags) => _aminoAcidsTags = aminoAcidsTags; | |
String? get brands => _brands; | |
set brands(String? brands) => _brands = brands; | |
List<String>? get brandsTags => _brandsTags; | |
set brandsTags(List<String>? brandsTags) => _brandsTags = brandsTags; | |
String? get categories => _categories; | |
set categories(String? categories) => _categories = categories; | |
List<String>? get categoriesHierarchy => _categoriesHierarchy; | |
set categoriesHierarchy(List<String>? categoriesHierarchy) => _categoriesHierarchy = categoriesHierarchy; | |
String? get categoriesLc => _categoriesLc; | |
set categoriesLc(String? categoriesLc) => _categoriesLc = categoriesLc; | |
String? get categoriesOld => _categoriesOld; | |
set categoriesOld(String? categoriesOld) => _categoriesOld = categoriesOld; | |
CategoriesProperties? get categoriesProperties => _categoriesProperties; | |
set categoriesProperties(CategoriesProperties? categoriesProperties) => _categoriesProperties = categoriesProperties; | |
List<String>? get categoriesPropertiesTags => _categoriesPropertiesTags; | |
set categoriesPropertiesTags(List<String>? categoriesPropertiesTags) => _categoriesPropertiesTags = categoriesPropertiesTags; | |
List<String>? get categoriesTags => _categoriesTags; | |
set categoriesTags(List<String>? categoriesTags) => _categoriesTags = categoriesTags; | |
CategoryProperties? get categoryProperties => _categoryProperties; | |
set categoryProperties(CategoryProperties? categoryProperties) => _categoryProperties = categoryProperties; | |
List<Null>? get checkers => _checkers; | |
set checkers(List<Null>? checkers) => _checkers = checkers; | |
List<Null>? get checkersTags => _checkersTags; | |
set checkersTags(List<Null>? checkersTags) => _checkersTags = checkersTags; | |
List<String>? get ciqualFoodNameTags => _ciqualFoodNameTags; | |
set ciqualFoodNameTags(List<String>? ciqualFoodNameTags) => _ciqualFoodNameTags = ciqualFoodNameTags; | |
List<Null>? get citiesTags => _citiesTags; | |
set citiesTags(List<Null>? citiesTags) => _citiesTags = citiesTags; | |
String? get code => _code; | |
set code(String? code) => _code = code; | |
List<String>? get codesTags => _codesTags; | |
set codesTags(List<String>? codesTags) => _codesTags = codesTags; | |
String? get comparedToCategory => _comparedToCategory; | |
set comparedToCategory(String? comparedToCategory) => _comparedToCategory = comparedToCategory; | |
int? get complete => _complete; | |
set complete(int? complete) => _complete = complete; | |
double? get completeness => _completeness; | |
set completeness(double? completeness) => _completeness = completeness; | |
List<Null>? get correctors => _correctors; | |
set correctors(List<Null>? correctors) => _correctors = correctors; | |
List<String>? get correctorsTags => _correctorsTags; | |
set correctorsTags(List<String>? correctorsTags) => _correctorsTags = correctorsTags; | |
String? get countries => _countries; | |
set countries(String? countries) => _countries = countries; | |
String? get countriesBeforescanbot => _countriesBeforescanbot; | |
set countriesBeforescanbot(String? countriesBeforescanbot) => _countriesBeforescanbot = countriesBeforescanbot; | |
List<String>? get countriesHierarchy => _countriesHierarchy; | |
set countriesHierarchy(List<String>? countriesHierarchy) => _countriesHierarchy = countriesHierarchy; | |
String? get countriesLc => _countriesLc; | |
set countriesLc(String? countriesLc) => _countriesLc = countriesLc; | |
List<String>? get countriesTags => _countriesTags; | |
set countriesTags(List<String>? countriesTags) => _countriesTags = countriesTags; | |
int? get createdT => _createdT; | |
set createdT(int? createdT) => _createdT = createdT; | |
String? get creator => _creator; | |
set creator(String? creator) => _creator = creator; | |
List<Null>? get dataQualityBugsTags => _dataQualityBugsTags; | |
set dataQualityBugsTags(List<Null>? dataQualityBugsTags) => _dataQualityBugsTags = dataQualityBugsTags; | |
List<Null>? get dataQualityErrorsTags => _dataQualityErrorsTags; | |
set dataQualityErrorsTags(List<Null>? dataQualityErrorsTags) => _dataQualityErrorsTags = dataQualityErrorsTags; | |
List<String>? get dataQualityInfoTags => _dataQualityInfoTags; | |
set dataQualityInfoTags(List<String>? dataQualityInfoTags) => _dataQualityInfoTags = dataQualityInfoTags; | |
List<String>? get dataQualityTags => _dataQualityTags; | |
set dataQualityTags(List<String>? dataQualityTags) => _dataQualityTags = dataQualityTags; | |
List<Null>? get dataQualityWarningsTags => _dataQualityWarningsTags; | |
set dataQualityWarningsTags(List<Null>? dataQualityWarningsTags) => _dataQualityWarningsTags = dataQualityWarningsTags; | |
String? get dataSources => _dataSources; | |
set dataSources(String? dataSources) => _dataSources = dataSources; | |
List<String>? get dataSourcesTags => _dataSourcesTags; | |
set dataSourcesTags(List<String>? dataSourcesTags) => _dataSourcesTags = dataSourcesTags; | |
List<String>? get debugParamSortedLangs => _debugParamSortedLangs; | |
set debugParamSortedLangs(List<String>? debugParamSortedLangs) => _debugParamSortedLangs = debugParamSortedLangs; | |
EcoscoreData? get ecoscoreData => _ecoscoreData; | |
set ecoscoreData(EcoscoreData? ecoscoreData) => _ecoscoreData = ecoscoreData; | |
EcoscoreExtendedData? get ecoscoreExtendedData => _ecoscoreExtendedData; | |
set ecoscoreExtendedData(EcoscoreExtendedData? ecoscoreExtendedData) => _ecoscoreExtendedData = ecoscoreExtendedData; | |
String? get ecoscoreExtendedDataVersion => _ecoscoreExtendedDataVersion; | |
set ecoscoreExtendedDataVersion(String? ecoscoreExtendedDataVersion) => _ecoscoreExtendedDataVersion = ecoscoreExtendedDataVersion; | |
String? get ecoscoreGrade => _ecoscoreGrade; | |
set ecoscoreGrade(String? ecoscoreGrade) => _ecoscoreGrade = ecoscoreGrade; | |
List<String>? get ecoscoreTags => _ecoscoreTags; | |
set ecoscoreTags(List<String>? ecoscoreTags) => _ecoscoreTags = ecoscoreTags; | |
List<String>? get editors => _editors; | |
set editors(List<String>? editors) => _editors = editors; | |
List<String>? get editorsTags => _editorsTags; | |
set editorsTags(List<String>? editorsTags) => _editorsTags = editorsTags; | |
String? get embCodes => _embCodes; | |
set embCodes(String? embCodes) => _embCodes = embCodes; | |
String? get embCodes20141016 => _embCodes20141016; | |
set embCodes20141016(String? embCodes20141016) => _embCodes20141016 = embCodes20141016; | |
String? get embCodesOrig => _embCodesOrig; | |
set embCodesOrig(String? embCodesOrig) => _embCodesOrig = embCodesOrig; | |
List<Null>? get embCodesTags => _embCodesTags; | |
set embCodesTags(List<Null>? embCodesTags) => _embCodesTags = embCodesTags; | |
List<String>? get entryDatesTags => _entryDatesTags; | |
set entryDatesTags(List<String>? entryDatesTags) => _entryDatesTags = entryDatesTags; | |
String? get environmentImpactLevel => _environmentImpactLevel; | |
set environmentImpactLevel(String? environmentImpactLevel) => _environmentImpactLevel = environmentImpactLevel; | |
List<Null>? get environmentImpactLevelTags => _environmentImpactLevelTags; | |
set environmentImpactLevelTags(List<Null>? environmentImpactLevelTags) => _environmentImpactLevelTags = environmentImpactLevelTags; | |
String? get expirationDate => _expirationDate; | |
set expirationDate(String? expirationDate) => _expirationDate = expirationDate; | |
String? get foodGroups => _foodGroups; | |
set foodGroups(String? foodGroups) => _foodGroups = foodGroups; | |
List<String>? get foodGroupsTags => _foodGroupsTags; | |
set foodGroupsTags(List<String>? foodGroupsTags) => _foodGroupsTags = foodGroupsTags; | |
int? get fruitsVegetablesNuts100gEstimate => _fruitsVegetablesNuts100gEstimate; | |
set fruitsVegetablesNuts100gEstimate(int? fruitsVegetablesNuts100gEstimate) => _fruitsVegetablesNuts100gEstimate = fruitsVegetablesNuts100gEstimate; | |
String? get genericName => _genericName; | |
set genericName(String? genericName) => _genericName = genericName; | |
String? get genericNameAz => _genericNameAz; | |
set genericNameAz(String? genericNameAz) => _genericNameAz = genericNameAz; | |
String? get genericNameBg => _genericNameBg; | |
set genericNameBg(String? genericNameBg) => _genericNameBg = genericNameBg; | |
String? get genericNameDe => _genericNameDe; | |
set genericNameDe(String? genericNameDe) => _genericNameDe = genericNameDe; | |
String? get genericNameEn => _genericNameEn; | |
set genericNameEn(String? genericNameEn) => _genericNameEn = genericNameEn; | |
String? get genericNameFr => _genericNameFr; | |
set genericNameFr(String? genericNameFr) => _genericNameFr = genericNameFr; | |
String? get genericNameHr => _genericNameHr; | |
set genericNameHr(String? genericNameHr) => _genericNameHr = genericNameHr; | |
String? get genericNameHu => _genericNameHu; | |
set genericNameHu(String? genericNameHu) => _genericNameHu = genericNameHu; | |
String? get genericNamePl => _genericNamePl; | |
set genericNamePl(String? genericNamePl) => _genericNamePl = genericNamePl; | |
String? get genericNamePt => _genericNamePt; | |
set genericNamePt(String? genericNamePt) => _genericNamePt = genericNamePt; | |
String? get genericNameRo => _genericNameRo; | |
set genericNameRo(String? genericNameRo) => _genericNameRo = genericNameRo; | |
String? get genericNameSl => _genericNameSl; | |
set genericNameSl(String? genericNameSl) => _genericNameSl = genericNameSl; | |
String? get id => _id; | |
set id(String? id) => _id = id; | |
String? get imageFrontSmallUrl => _imageFrontSmallUrl; | |
set imageFrontSmallUrl(String? imageFrontSmallUrl) => _imageFrontSmallUrl = imageFrontSmallUrl; | |
String? get imageFrontThumbUrl => _imageFrontThumbUrl; | |
set imageFrontThumbUrl(String? imageFrontThumbUrl) => _imageFrontThumbUrl = imageFrontThumbUrl; | |
String? get imageFrontUrl => _imageFrontUrl; | |
set imageFrontUrl(String? imageFrontUrl) => _imageFrontUrl = imageFrontUrl; | |
String? get imageIngredientsSmallUrl => _imageIngredientsSmallUrl; | |
set imageIngredientsSmallUrl(String? imageIngredientsSmallUrl) => _imageIngredientsSmallUrl = imageIngredientsSmallUrl; | |
String? get imageIngredientsThumbUrl => _imageIngredientsThumbUrl; | |
set imageIngredientsThumbUrl(String? imageIngredientsThumbUrl) => _imageIngredientsThumbUrl = imageIngredientsThumbUrl; | |
String? get imageIngredientsUrl => _imageIngredientsUrl; | |
set imageIngredientsUrl(String? imageIngredientsUrl) => _imageIngredientsUrl = imageIngredientsUrl; | |
String? get imageNutritionSmallUrl => _imageNutritionSmallUrl; | |
set imageNutritionSmallUrl(String? imageNutritionSmallUrl) => _imageNutritionSmallUrl = imageNutritionSmallUrl; | |
String? get imageNutritionThumbUrl => _imageNutritionThumbUrl; | |
set imageNutritionThumbUrl(String? imageNutritionThumbUrl) => _imageNutritionThumbUrl = imageNutritionThumbUrl; | |
String? get imageNutritionUrl => _imageNutritionUrl; | |
set imageNutritionUrl(String? imageNutritionUrl) => _imageNutritionUrl = imageNutritionUrl; | |
String? get imagePackagingSmallUrl => _imagePackagingSmallUrl; | |
set imagePackagingSmallUrl(String? imagePackagingSmallUrl) => _imagePackagingSmallUrl = imagePackagingSmallUrl; | |
String? get imagePackagingThumbUrl => _imagePackagingThumbUrl; | |
set imagePackagingThumbUrl(String? imagePackagingThumbUrl) => _imagePackagingThumbUrl = imagePackagingThumbUrl; | |
String? get imagePackagingUrl => _imagePackagingUrl; | |
set imagePackagingUrl(String? imagePackagingUrl) => _imagePackagingUrl = imagePackagingUrl; | |
String? get imageSmallUrl => _imageSmallUrl; | |
set imageSmallUrl(String? imageSmallUrl) => _imageSmallUrl = imageSmallUrl; | |
String? get imageThumbUrl => _imageThumbUrl; | |
set imageThumbUrl(String? imageThumbUrl) => _imageThumbUrl = imageThumbUrl; | |
String? get imageUrl => _imageUrl; | |
set imageUrl(String? imageUrl) => _imageUrl = imageUrl; | |
Images? get images => _images; | |
set images(Images? images) => _images = images; | |
List<String>? get informers => _informers; | |
set informers(List<String>? informers) => _informers = informers; | |
List<String>? get informersTags => _informersTags; | |
set informersTags(List<String>? informersTags) => _informersTags = informersTags; | |
List<Ingredients>? get ingredients => _ingredients; | |
set ingredients(List<Ingredients>? ingredients) => _ingredients = ingredients; | |
IngredientsAnalysis? get ingredientsAnalysis => _ingredientsAnalysis; | |
set ingredientsAnalysis(IngredientsAnalysis? ingredientsAnalysis) => _ingredientsAnalysis = ingredientsAnalysis; | |
List<String>? get ingredientsAnalysisTags => _ingredientsAnalysisTags; | |
set ingredientsAnalysisTags(List<String>? ingredientsAnalysisTags) => _ingredientsAnalysisTags = ingredientsAnalysisTags; | |
List<String>? get ingredientsDebug => _ingredientsDebug; | |
set ingredientsDebug(List<String>? ingredientsDebug) => _ingredientsDebug = ingredientsDebug; | |
int? get ingredientsFromOrThatMayBeFromPalmOilN => _ingredientsFromOrThatMayBeFromPalmOilN; | |
set ingredientsFromOrThatMayBeFromPalmOilN(int? ingredientsFromOrThatMayBeFromPalmOilN) => _ingredientsFromOrThatMayBeFromPalmOilN = ingredientsFromOrThatMayBeFromPalmOilN; | |
int? get ingredientsFromPalmOilN => _ingredientsFromPalmOilN; | |
set ingredientsFromPalmOilN(int? ingredientsFromPalmOilN) => _ingredientsFromPalmOilN = ingredientsFromPalmOilN; | |
List<Null>? get ingredientsFromPalmOilTags => _ingredientsFromPalmOilTags; | |
set ingredientsFromPalmOilTags(List<Null>? ingredientsFromPalmOilTags) => _ingredientsFromPalmOilTags = ingredientsFromPalmOilTags; | |
List<String>? get ingredientsHierarchy => _ingredientsHierarchy; | |
set ingredientsHierarchy(List<String>? ingredientsHierarchy) => _ingredientsHierarchy = ingredientsHierarchy; | |
List<String>? get ingredientsIdsDebug => _ingredientsIdsDebug; | |
set ingredientsIdsDebug(List<String>? ingredientsIdsDebug) => _ingredientsIdsDebug = ingredientsIdsDebug; | |
int? get ingredientsN => _ingredientsN; | |
set ingredientsN(int? ingredientsN) => _ingredientsN = ingredientsN; | |
List<String>? get ingredientsNTags => _ingredientsNTags; | |
set ingredientsNTags(List<String>? ingredientsNTags) => _ingredientsNTags = ingredientsNTags; | |
List<String>? get ingredientsOriginalTags => _ingredientsOriginalTags; | |
set ingredientsOriginalTags(List<String>? ingredientsOriginalTags) => _ingredientsOriginalTags = ingredientsOriginalTags; | |
int? get ingredientsPercentAnalysis => _ingredientsPercentAnalysis; | |
set ingredientsPercentAnalysis(int? ingredientsPercentAnalysis) => _ingredientsPercentAnalysis = ingredientsPercentAnalysis; | |
List<String>? get ingredientsTags => _ingredientsTags; | |
set ingredientsTags(List<String>? ingredientsTags) => _ingredientsTags = ingredientsTags; | |
String? get ingredientsText => _ingredientsText; | |
set ingredientsText(String? ingredientsText) => _ingredientsText = ingredientsText; | |
String? get ingredientsTextAz => _ingredientsTextAz; | |
set ingredientsTextAz(String? ingredientsTextAz) => _ingredientsTextAz = ingredientsTextAz; | |
String? get ingredientsTextBg => _ingredientsTextBg; | |
set ingredientsTextBg(String? ingredientsTextBg) => _ingredientsTextBg = ingredientsTextBg; | |
String? get ingredientsTextDe => _ingredientsTextDe; | |
set ingredientsTextDe(String? ingredientsTextDe) => _ingredientsTextDe = ingredientsTextDe; | |
String? get ingredientsTextDebug => _ingredientsTextDebug; | |
set ingredientsTextDebug(String? ingredientsTextDebug) => _ingredientsTextDebug = ingredientsTextDebug; | |
String? get ingredientsTextEn => _ingredientsTextEn; | |
set ingredientsTextEn(String? ingredientsTextEn) => _ingredientsTextEn = ingredientsTextEn; | |
String? get ingredientsTextFr => _ingredientsTextFr; | |
set ingredientsTextFr(String? ingredientsTextFr) => _ingredientsTextFr = ingredientsTextFr; | |
String? get ingredientsTextHr => _ingredientsTextHr; | |
set ingredientsTextHr(String? ingredientsTextHr) => _ingredientsTextHr = ingredientsTextHr; | |
String? get ingredientsTextHu => _ingredientsTextHu; | |
set ingredientsTextHu(String? ingredientsTextHu) => _ingredientsTextHu = ingredientsTextHu; | |
String? get ingredientsTextPl => _ingredientsTextPl; | |
set ingredientsTextPl(String? ingredientsTextPl) => _ingredientsTextPl = ingredientsTextPl; | |
String? get ingredientsTextPt => _ingredientsTextPt; | |
set ingredientsTextPt(String? ingredientsTextPt) => _ingredientsTextPt = ingredientsTextPt; | |
String? get ingredientsTextRo => _ingredientsTextRo; | |
set ingredientsTextRo(String? ingredientsTextRo) => _ingredientsTextRo = ingredientsTextRo; | |
String? get ingredientsTextSl => _ingredientsTextSl; | |
set ingredientsTextSl(String? ingredientsTextSl) => _ingredientsTextSl = ingredientsTextSl; | |
String? get ingredientsTextWithAllergens => _ingredientsTextWithAllergens; | |
set ingredientsTextWithAllergens(String? ingredientsTextWithAllergens) => _ingredientsTextWithAllergens = ingredientsTextWithAllergens; | |
String? get ingredientsTextWithAllergensAz => _ingredientsTextWithAllergensAz; | |
set ingredientsTextWithAllergensAz(String? ingredientsTextWithAllergensAz) => _ingredientsTextWithAllergensAz = ingredientsTextWithAllergensAz; | |
String? get ingredientsTextWithAllergensBg => _ingredientsTextWithAllergensBg; | |
set ingredientsTextWithAllergensBg(String? ingredientsTextWithAllergensBg) => _ingredientsTextWithAllergensBg = ingredientsTextWithAllergensBg; | |
String? get ingredientsTextWithAllergensDe => _ingredientsTextWithAllergensDe; | |
set ingredientsTextWithAllergensDe(String? ingredientsTextWithAllergensDe) => _ingredientsTextWithAllergensDe = ingredientsTextWithAllergensDe; | |
String? get ingredientsTextWithAllergensEn => _ingredientsTextWithAllergensEn; | |
set ingredientsTextWithAllergensEn(String? ingredientsTextWithAllergensEn) => _ingredientsTextWithAllergensEn = ingredientsTextWithAllergensEn; | |
String? get ingredientsTextWithAllergensFr => _ingredientsTextWithAllergensFr; | |
set ingredientsTextWithAllergensFr(String? ingredientsTextWithAllergensFr) => _ingredientsTextWithAllergensFr = ingredientsTextWithAllergensFr; | |
String? get ingredientsTextWithAllergensHr => _ingredientsTextWithAllergensHr; | |
set ingredientsTextWithAllergensHr(String? ingredientsTextWithAllergensHr) => _ingredientsTextWithAllergensHr = ingredientsTextWithAllergensHr; | |
String? get ingredientsTextWithAllergensHu => _ingredientsTextWithAllergensHu; | |
set ingredientsTextWithAllergensHu(String? ingredientsTextWithAllergensHu) => _ingredientsTextWithAllergensHu = ingredientsTextWithAllergensHu; | |
String? get ingredientsTextWithAllergensPl => _ingredientsTextWithAllergensPl; | |
set ingredientsTextWithAllergensPl(String? ingredientsTextWithAllergensPl) => _ingredientsTextWithAllergensPl = ingredientsTextWithAllergensPl; | |
String? get ingredientsTextWithAllergensPt => _ingredientsTextWithAllergensPt; | |
set ingredientsTextWithAllergensPt(String? ingredientsTextWithAllergensPt) => _ingredientsTextWithAllergensPt = ingredientsTextWithAllergensPt; | |
String? get ingredientsTextWithAllergensRo => _ingredientsTextWithAllergensRo; | |
set ingredientsTextWithAllergensRo(String? ingredientsTextWithAllergensRo) => _ingredientsTextWithAllergensRo = ingredientsTextWithAllergensRo; | |
String? get ingredientsTextWithAllergensSl => _ingredientsTextWithAllergensSl; | |
set ingredientsTextWithAllergensSl(String? ingredientsTextWithAllergensSl) => _ingredientsTextWithAllergensSl = ingredientsTextWithAllergensSl; | |
int? get ingredientsThatMayBeFromPalmOilN => _ingredientsThatMayBeFromPalmOilN; | |
set ingredientsThatMayBeFromPalmOilN(int? ingredientsThatMayBeFromPalmOilN) => _ingredientsThatMayBeFromPalmOilN = ingredientsThatMayBeFromPalmOilN; | |
List<Null>? get ingredientsThatMayBeFromPalmOilTags => _ingredientsThatMayBeFromPalmOilTags; | |
set ingredientsThatMayBeFromPalmOilTags(List<Null>? ingredientsThatMayBeFromPalmOilTags) => _ingredientsThatMayBeFromPalmOilTags = ingredientsThatMayBeFromPalmOilTags; | |
int? get ingredientsWithSpecifiedPercentN => _ingredientsWithSpecifiedPercentN; | |
set ingredientsWithSpecifiedPercentN(int? ingredientsWithSpecifiedPercentN) => _ingredientsWithSpecifiedPercentN = ingredientsWithSpecifiedPercentN; | |
int? get ingredientsWithSpecifiedPercentSum => _ingredientsWithSpecifiedPercentSum; | |
set ingredientsWithSpecifiedPercentSum(int? ingredientsWithSpecifiedPercentSum) => _ingredientsWithSpecifiedPercentSum = ingredientsWithSpecifiedPercentSum; | |
int? get ingredientsWithUnspecifiedPercentN => _ingredientsWithUnspecifiedPercentN; | |
set ingredientsWithUnspecifiedPercentN(int? ingredientsWithUnspecifiedPercentN) => _ingredientsWithUnspecifiedPercentN = ingredientsWithUnspecifiedPercentN; | |
int? get ingredientsWithUnspecifiedPercentSum => _ingredientsWithUnspecifiedPercentSum; | |
set ingredientsWithUnspecifiedPercentSum(int? ingredientsWithUnspecifiedPercentSum) => _ingredientsWithUnspecifiedPercentSum = ingredientsWithUnspecifiedPercentSum; | |
String? get interfaceVersionModified => _interfaceVersionModified; | |
set interfaceVersionModified(String? interfaceVersionModified) => _interfaceVersionModified = interfaceVersionModified; | |
int? get knownIngredientsN => _knownIngredientsN; | |
set knownIngredientsN(int? knownIngredientsN) => _knownIngredientsN = knownIngredientsN; | |
String? get labels => _labels; | |
set labels(String? labels) => _labels = labels; | |
List<String>? get labelsHierarchy => _labelsHierarchy; | |
set labelsHierarchy(List<String>? labelsHierarchy) => _labelsHierarchy = labelsHierarchy; | |
String? get labelsLc => _labelsLc; | |
set labelsLc(String? labelsLc) => _labelsLc = labelsLc; | |
String? get labelsOld => _labelsOld; | |
set labelsOld(String? labelsOld) => _labelsOld = labelsOld; | |
List<String>? get labelsTags => _labelsTags; | |
set labelsTags(List<String>? labelsTags) => _labelsTags = labelsTags; | |
String? get lang => _lang; | |
set lang(String? lang) => _lang = lang; | |
Languages? get languages => _languages; | |
set languages(Languages? languages) => _languages = languages; | |
LanguagesCodes? get languagesCodes => _languagesCodes; | |
set languagesCodes(LanguagesCodes? languagesCodes) => _languagesCodes = languagesCodes; | |
List<String>? get languagesHierarchy => _languagesHierarchy; | |
set languagesHierarchy(List<String>? languagesHierarchy) => _languagesHierarchy = languagesHierarchy; | |
List<String>? get languagesTags => _languagesTags; | |
set languagesTags(List<String>? languagesTags) => _languagesTags = languagesTags; | |
List<String>? get lastEditDatesTags => _lastEditDatesTags; | |
set lastEditDatesTags(List<String>? lastEditDatesTags) => _lastEditDatesTags = lastEditDatesTags; | |
String? get lastEditor => _lastEditor; | |
set lastEditor(String? lastEditor) => _lastEditor = lastEditor; | |
List<String>? get lastImageDatesTags => _lastImageDatesTags; | |
set lastImageDatesTags(List<String>? lastImageDatesTags) => _lastImageDatesTags = lastImageDatesTags; | |
int? get lastImageT => _lastImageT; | |
set lastImageT(int? lastImageT) => _lastImageT = lastImageT; | |
String? get lastModifiedBy => _lastModifiedBy; | |
set lastModifiedBy(String? lastModifiedBy) => _lastModifiedBy = lastModifiedBy; | |
int? get lastModifiedT => _lastModifiedT; | |
set lastModifiedT(int? lastModifiedT) => _lastModifiedT = lastModifiedT; | |
String? get lc => _lc; | |
set lc(String? lc) => _lc = lc; | |
String? get link => _link; | |
set link(String? link) => _link = link; | |
List<Null>? get mainCountriesTags => _mainCountriesTags; | |
set mainCountriesTags(List<Null>? mainCountriesTags) => _mainCountriesTags = mainCountriesTags; | |
String? get manufacturingPlaces => _manufacturingPlaces; | |
set manufacturingPlaces(String? manufacturingPlaces) => _manufacturingPlaces = manufacturingPlaces; | |
List<Null>? get manufacturingPlacesTags => _manufacturingPlacesTags; | |
set manufacturingPlacesTags(List<Null>? manufacturingPlacesTags) => _manufacturingPlacesTags = manufacturingPlacesTags; | |
String? get maxImgid => _maxImgid; | |
set maxImgid(String? maxImgid) => _maxImgid = maxImgid; | |
List<Null>? get mineralsPrevTags => _mineralsPrevTags; | |
set mineralsPrevTags(List<Null>? mineralsPrevTags) => _mineralsPrevTags = mineralsPrevTags; | |
List<Null>? get mineralsTags => _mineralsTags; | |
set mineralsTags(List<Null>? mineralsTags) => _mineralsTags = mineralsTags; | |
List<String>? get miscTags => _miscTags; | |
set miscTags(List<String>? miscTags) => _miscTags = miscTags; | |
int? get newAdditivesN => _newAdditivesN; | |
set newAdditivesN(int? newAdditivesN) => _newAdditivesN = newAdditivesN; | |
String? get noNutritionData => _noNutritionData; | |
set noNutritionData(String? noNutritionData) => _noNutritionData = noNutritionData; | |
int? get novaGroup => _novaGroup; | |
set novaGroup(int? novaGroup) => _novaGroup = novaGroup; | |
String? get novaGroupDebug => _novaGroupDebug; | |
set novaGroupDebug(String? novaGroupDebug) => _novaGroupDebug = novaGroupDebug; | |
String? get novaGroups => _novaGroups; | |
set novaGroups(String? novaGroups) => _novaGroups = novaGroups; | |
NovaGroupsMarkers? get novaGroupsMarkers => _novaGroupsMarkers; | |
set novaGroupsMarkers(NovaGroupsMarkers? novaGroupsMarkers) => _novaGroupsMarkers = novaGroupsMarkers; | |
List<String>? get novaGroupsTags => _novaGroupsTags; | |
set novaGroupsTags(List<String>? novaGroupsTags) => _novaGroupsTags = novaGroupsTags; | |
List<Null>? get nucleotidesPrevTags => _nucleotidesPrevTags; | |
set nucleotidesPrevTags(List<Null>? nucleotidesPrevTags) => _nucleotidesPrevTags = nucleotidesPrevTags; | |
List<Null>? get nucleotidesTags => _nucleotidesTags; | |
set nucleotidesTags(List<Null>? nucleotidesTags) => _nucleotidesTags = nucleotidesTags; | |
NutrientLevels? get nutrientLevels => _nutrientLevels; | |
set nutrientLevels(NutrientLevels? nutrientLevels) => _nutrientLevels = nutrientLevels; | |
List<String>? get nutrientLevelsTags => _nutrientLevelsTags; | |
set nutrientLevelsTags(List<String>? nutrientLevelsTags) => _nutrientLevelsTags = nutrientLevelsTags; | |
Nutriments? get nutriments => _nutriments; | |
set nutriments(Nutriments? nutriments) => _nutriments = nutriments; | |
NutriscoreData? get nutriscoreData => _nutriscoreData; | |
set nutriscoreData(NutriscoreData? nutriscoreData) => _nutriscoreData = nutriscoreData; | |
String? get nutriscoreGrade => _nutriscoreGrade; | |
set nutriscoreGrade(String? nutriscoreGrade) => _nutriscoreGrade = nutriscoreGrade; | |
int? get nutriscoreScore => _nutriscoreScore; | |
set nutriscoreScore(int? nutriscoreScore) => _nutriscoreScore = nutriscoreScore; | |
int? get nutriscoreScoreOpposite => _nutriscoreScoreOpposite; | |
set nutriscoreScoreOpposite(int? nutriscoreScoreOpposite) => _nutriscoreScoreOpposite = nutriscoreScoreOpposite; | |
String? get nutritionData => _nutritionData; | |
set nutritionData(String? nutritionData) => _nutritionData = nutritionData; | |
String? get nutritionDataPer => _nutritionDataPer; | |
set nutritionDataPer(String? nutritionDataPer) => _nutritionDataPer = nutritionDataPer; | |
String? get nutritionDataPrepared => _nutritionDataPrepared; | |
set nutritionDataPrepared(String? nutritionDataPrepared) => _nutritionDataPrepared = nutritionDataPrepared; | |
String? get nutritionDataPreparedPer => _nutritionDataPreparedPer; | |
set nutritionDataPreparedPer(String? nutritionDataPreparedPer) => _nutritionDataPreparedPer = nutritionDataPreparedPer; | |
String? get nutritionGradeFr => _nutritionGradeFr; | |
set nutritionGradeFr(String? nutritionGradeFr) => _nutritionGradeFr = nutritionGradeFr; | |
String? get nutritionGrades => _nutritionGrades; | |
set nutritionGrades(String? nutritionGrades) => _nutritionGrades = nutritionGrades; | |
List<String>? get nutritionGradesTags => _nutritionGradesTags; | |
set nutritionGradesTags(List<String>? nutritionGradesTags) => _nutritionGradesTags = nutritionGradesTags; | |
int? get nutritionScoreBeverage => _nutritionScoreBeverage; | |
set nutritionScoreBeverage(int? nutritionScoreBeverage) => _nutritionScoreBeverage = nutritionScoreBeverage; | |
String? get nutritionScoreDebug => _nutritionScoreDebug; | |
set nutritionScoreDebug(String? nutritionScoreDebug) => _nutritionScoreDebug = nutritionScoreDebug; | |
int? get nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredients => _nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredients; | |
set nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredients(int? nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredients) => _nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredients = nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredients; | |
int? get nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredientsValue => _nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredientsValue; | |
set nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredientsValue(int? nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredientsValue) => _nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredientsValue = nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredientsValue; | |
String? get obsolete => _obsolete; | |
set obsolete(String? obsolete) => _obsolete = obsolete; | |
String? get obsoleteSinceDate => _obsoleteSinceDate; | |
set obsoleteSinceDate(String? obsoleteSinceDate) => _obsoleteSinceDate = obsoleteSinceDate; | |
String? get origin => _origin; | |
set origin(String? origin) => _origin = origin; | |
String? get originAz => _originAz; | |
set originAz(String? originAz) => _originAz = originAz; | |
String? get originBg => _originBg; | |
set originBg(String? originBg) => _originBg = originBg; | |
String? get originDe => _originDe; | |
set originDe(String? originDe) => _originDe = originDe; | |
String? get originEn => _originEn; | |
set originEn(String? originEn) => _originEn = originEn; | |
String? get originFr => _originFr; | |
set originFr(String? originFr) => _originFr = originFr; | |
String? get originHr => _originHr; | |
set originHr(String? originHr) => _originHr = originHr; | |
String? get originHu => _originHu; | |
set originHu(String? originHu) => _originHu = originHu; | |
String? get originPl => _originPl; | |
set originPl(String? originPl) => _originPl = originPl; | |
String? get originPt => _originPt; | |
set originPt(String? originPt) => _originPt = originPt; | |
String? get originRo => _originRo; | |
set originRo(String? originRo) => _originRo = originRo; | |
String? get originSl => _originSl; | |
set originSl(String? originSl) => _originSl = originSl; | |
String? get origins => _origins; | |
set origins(String? origins) => _origins = origins; | |
List<Null>? get originsHierarchy => _originsHierarchy; | |
set originsHierarchy(List<Null>? originsHierarchy) => _originsHierarchy = originsHierarchy; | |
String? get originsLc => _originsLc; | |
set originsLc(String? originsLc) => _originsLc = originsLc; | |
String? get originsOld => _originsOld; | |
set originsOld(String? originsOld) => _originsOld = originsOld; | |
List<Null>? get originsTags => _originsTags; | |
set originsTags(List<Null>? originsTags) => _originsTags = originsTags; | |
List<Null>? get otherNutritionalSubstancesTags => _otherNutritionalSubstancesTags; | |
set otherNutritionalSubstancesTags(List<Null>? otherNutritionalSubstancesTags) => _otherNutritionalSubstancesTags = otherNutritionalSubstancesTags; | |
String? get packaging => _packaging; | |
set packaging(String? packaging) => _packaging = packaging; | |
List<String>? get packagingHierarchy => _packagingHierarchy; | |
set packagingHierarchy(List<String>? packagingHierarchy) => _packagingHierarchy = packagingHierarchy; | |
String? get packagingLc => _packagingLc; | |
set packagingLc(String? packagingLc) => _packagingLc = packagingLc; | |
String? get packagingOld => _packagingOld; | |
set packagingOld(String? packagingOld) => _packagingOld = packagingOld; | |
String? get packagingOldBeforeTaxonomization => _packagingOldBeforeTaxonomization; | |
set packagingOldBeforeTaxonomization(String? packagingOldBeforeTaxonomization) => _packagingOldBeforeTaxonomization = packagingOldBeforeTaxonomization; | |
List<String>? get packagingTags => _packagingTags; | |
set packagingTags(List<String>? packagingTags) => _packagingTags = packagingTags; | |
String? get packagingText => _packagingText; | |
set packagingText(String? packagingText) => _packagingText = packagingText; | |
String? get packagingTextAz => _packagingTextAz; | |
set packagingTextAz(String? packagingTextAz) => _packagingTextAz = packagingTextAz; | |
String? get packagingTextBg => _packagingTextBg; | |
set packagingTextBg(String? packagingTextBg) => _packagingTextBg = packagingTextBg; | |
String? get packagingTextDe => _packagingTextDe; | |
set packagingTextDe(String? packagingTextDe) => _packagingTextDe = packagingTextDe; | |
String? get packagingTextEn => _packagingTextEn; | |
set packagingTextEn(String? packagingTextEn) => _packagingTextEn = packagingTextEn; | |
String? get packagingTextFr => _packagingTextFr; | |
set packagingTextFr(String? packagingTextFr) => _packagingTextFr = packagingTextFr; | |
String? get packagingTextHr => _packagingTextHr; | |
set packagingTextHr(String? packagingTextHr) => _packagingTextHr = packagingTextHr; | |
String? get packagingTextHu => _packagingTextHu; | |
set packagingTextHu(String? packagingTextHu) => _packagingTextHu = packagingTextHu; | |
String? get packagingTextPl => _packagingTextPl; | |
set packagingTextPl(String? packagingTextPl) => _packagingTextPl = packagingTextPl; | |
String? get packagingTextPt => _packagingTextPt; | |
set packagingTextPt(String? packagingTextPt) => _packagingTextPt = packagingTextPt; | |
String? get packagingTextRo => _packagingTextRo; | |
set packagingTextRo(String? packagingTextRo) => _packagingTextRo = packagingTextRo; | |
String? get packagingTextSl => _packagingTextSl; | |
set packagingTextSl(String? packagingTextSl) => _packagingTextSl = packagingTextSl; | |
List<Packagings>? get packagings => _packagings; | |
set packagings(List<Packagings>? packagings) => _packagings = packagings; | |
List<String>? get photographers => _photographers; | |
set photographers(List<String>? photographers) => _photographers = photographers; | |
List<String>? get photographersTags => _photographersTags; | |
set photographersTags(List<String>? photographersTags) => _photographersTags = photographersTags; | |
String? get pnnsGroups1 => _pnnsGroups1; | |
set pnnsGroups1(String? pnnsGroups1) => _pnnsGroups1 = pnnsGroups1; | |
List<String>? get pnnsGroups1Tags => _pnnsGroups1Tags; | |
set pnnsGroups1Tags(List<String>? pnnsGroups1Tags) => _pnnsGroups1Tags = pnnsGroups1Tags; | |
String? get pnnsGroups2 => _pnnsGroups2; | |
set pnnsGroups2(String? pnnsGroups2) => _pnnsGroups2 = pnnsGroups2; | |
List<String>? get pnnsGroups2Tags => _pnnsGroups2Tags; | |
set pnnsGroups2Tags(List<String>? pnnsGroups2Tags) => _pnnsGroups2Tags = pnnsGroups2Tags; | |
int? get popularityKey => _popularityKey; | |
set popularityKey(int? popularityKey) => _popularityKey = popularityKey; | |
List<String>? get popularityTags => _popularityTags; | |
set popularityTags(List<String>? popularityTags) => _popularityTags = popularityTags; | |
String? get productName => _productName; | |
set productName(String? productName) => _productName = productName; | |
String? get productNameAz => _productNameAz; | |
set productNameAz(String? productNameAz) => _productNameAz = productNameAz; | |
String? get productNameBg => _productNameBg; | |
set productNameBg(String? productNameBg) => _productNameBg = productNameBg; | |
String? get productNameDe => _productNameDe; | |
set productNameDe(String? productNameDe) => _productNameDe = productNameDe; | |
String? get productNameEn => _productNameEn; | |
set productNameEn(String? productNameEn) => _productNameEn = productNameEn; | |
String? get productNameFr => _productNameFr; | |
set productNameFr(String? productNameFr) => _productNameFr = productNameFr; | |
String? get productNameHr => _productNameHr; | |
set productNameHr(String? productNameHr) => _productNameHr = productNameHr; | |
String? get productNameHu => _productNameHu; | |
set productNameHu(String? productNameHu) => _productNameHu = productNameHu; | |
String? get productNamePl => _productNamePl; | |
set productNamePl(String? productNamePl) => _productNamePl = productNamePl; | |
String? get productNamePt => _productNamePt; | |
set productNamePt(String? productNamePt) => _productNamePt = productNamePt; | |
String? get productNameRo => _productNameRo; | |
set productNameRo(String? productNameRo) => _productNameRo = productNameRo; | |
String? get productNameSl => _productNameSl; | |
set productNameSl(String? productNameSl) => _productNameSl = productNameSl; | |
String? get productQuantity => _productQuantity; | |
set productQuantity(String? productQuantity) => _productQuantity = productQuantity; | |
String? get purchasePlaces => _purchasePlaces; | |
set purchasePlaces(String? purchasePlaces) => _purchasePlaces = purchasePlaces; | |
List<String>? get purchasePlacesTags => _purchasePlacesTags; | |
set purchasePlacesTags(List<String>? purchasePlacesTags) => _purchasePlacesTags = purchasePlacesTags; | |
String? get quantity => _quantity; | |
set quantity(String? quantity) => _quantity = quantity; | |
List<Null>? get removedCountriesTags => _removedCountriesTags; | |
set removedCountriesTags(List<Null>? removedCountriesTags) => _removedCountriesTags = removedCountriesTags; | |
int? get rev => _rev; | |
set rev(int? rev) => _rev = rev; | |
int? get scansN => _scansN; | |
set scansN(int? scansN) => _scansN = scansN; | |
SelectedImages? get selectedImages => _selectedImages; | |
set selectedImages(SelectedImages? selectedImages) => _selectedImages = selectedImages; | |
String? get servingQuantity => _servingQuantity; | |
set servingQuantity(String? servingQuantity) => _servingQuantity = servingQuantity; | |
String? get servingSize => _servingSize; | |
set servingSize(String? servingSize) => _servingSize = servingSize; | |
int? get sortkey => _sortkey; | |
set sortkey(int? sortkey) => _sortkey = sortkey; | |
List<Sources>? get sources => _sources; | |
set sources(List<Sources>? sources) => _sources = sources; | |
String? get states => _states; | |
set states(String? states) => _states = states; | |
List<String>? get statesHierarchy => _statesHierarchy; | |
set statesHierarchy(List<String>? statesHierarchy) => _statesHierarchy = statesHierarchy; | |
List<String>? get statesTags => _statesTags; | |
set statesTags(List<String>? statesTags) => _statesTags = statesTags; | |
String? get stores => _stores; | |
set stores(String? stores) => _stores = stores; | |
List<String>? get storesTags => _storesTags; | |
set storesTags(List<String>? storesTags) => _storesTags = storesTags; | |
String? get teams => _teams; | |
set teams(String? teams) => _teams = teams; | |
List<String>? get teamsTags => _teamsTags; | |
set teamsTags(List<String>? teamsTags) => _teamsTags = teamsTags; | |
String? get traces => _traces; | |
set traces(String? traces) => _traces = traces; | |
String? get tracesFromIngredients => _tracesFromIngredients; | |
set tracesFromIngredients(String? tracesFromIngredients) => _tracesFromIngredients = tracesFromIngredients; | |
String? get tracesFromUser => _tracesFromUser; | |
set tracesFromUser(String? tracesFromUser) => _tracesFromUser = tracesFromUser; | |
List<String>? get tracesHierarchy => _tracesHierarchy; | |
set tracesHierarchy(List<String>? tracesHierarchy) => _tracesHierarchy = tracesHierarchy; | |
String? get tracesLc => _tracesLc; | |
set tracesLc(String? tracesLc) => _tracesLc = tracesLc; | |
List<String>? get tracesTags => _tracesTags; | |
set tracesTags(List<String>? tracesTags) => _tracesTags = tracesTags; | |
int? get uniqueScansN => _uniqueScansN; | |
set uniqueScansN(int? uniqueScansN) => _uniqueScansN = uniqueScansN; | |
int? get unknownIngredientsN => _unknownIngredientsN; | |
set unknownIngredientsN(int? unknownIngredientsN) => _unknownIngredientsN = unknownIngredientsN; | |
List<Null>? get unknownNutrientsTags => _unknownNutrientsTags; | |
set unknownNutrientsTags(List<Null>? unknownNutrientsTags) => _unknownNutrientsTags = unknownNutrientsTags; | |
String? get updateKey => _updateKey; | |
set updateKey(String? updateKey) => _updateKey = updateKey; | |
List<Null>? get vitaminsPrevTags => _vitaminsPrevTags; | |
set vitaminsPrevTags(List<Null>? vitaminsPrevTags) => _vitaminsPrevTags = vitaminsPrevTags; | |
List<Null>? get vitaminsTags => _vitaminsTags; | |
set vitaminsTags(List<Null>? vitaminsTags) => _vitaminsTags = vitaminsTags; | |
Product.fromJson(Map<String, dynamic> json) { | |
_sId = json['_id']; | |
_lKeywords = json['_keywords'].cast<String>(); | |
if (json['added_countries_tags'] != null) { | |
_addedCountriesTags = <Null>[]; | |
json['added_countries_tags'].forEach((v) { _addedCountriesTags!.add(new Null.fromJson(v)); }); | |
} | |
if (json['additives_debug_tags'] != null) { | |
_additivesDebugTags = <Null>[]; | |
json['additives_debug_tags'].forEach((v) { _additivesDebugTags!.add(new Null.fromJson(v)); }); | |
} | |
_additivesN = json['additives_n']; | |
_additivesOldN = json['additives_old_n']; | |
_additivesOldTags = json['additives_old_tags'].cast<String>(); | |
_additivesOriginalTags = json['additives_original_tags'].cast<String>(); | |
_additivesPrevOriginalTags = json['additives_prev_original_tags'].cast<String>(); | |
_additivesTags = json['additives_tags'].cast<String>(); | |
_allergens = json['allergens']; | |
_allergensFromIngredients = json['allergens_from_ingredients']; | |
_allergensFromUser = json['allergens_from_user']; | |
if (json['allergens_hierarchy'] != null) { | |
_allergensHierarchy = <Null>[]; | |
json['allergens_hierarchy'].forEach((v) { _allergensHierarchy!.add(new Null.fromJson(v)); }); | |
} | |
_allergensLc = json['allergens_lc']; | |
if (json['allergens_tags'] != null) { | |
_allergensTags = <Null>[]; | |
json['allergens_tags'].forEach((v) { _allergensTags!.add(new Null.fromJson(v)); }); | |
} | |
if (json['amino_acids_prev_tags'] != null) { | |
_aminoAcidsPrevTags = <Null>[]; | |
json['amino_acids_prev_tags'].forEach((v) { _aminoAcidsPrevTags!.add(new Null.fromJson(v)); }); | |
} | |
if (json['amino_acids_tags'] != null) { | |
_aminoAcidsTags = <Null>[]; | |
json['amino_acids_tags'].forEach((v) { _aminoAcidsTags!.add(new Null.fromJson(v)); }); | |
} | |
_brands = json['brands']; | |
_brandsTags = json['brands_tags'].cast<String>(); | |
_categories = json['categories']; | |
_categoriesHierarchy = json['categories_hierarchy'].cast<String>(); | |
_categoriesLc = json['categories_lc']; | |
_categoriesOld = json['categories_old']; | |
_categoriesProperties = json['categories_properties'] != null ? new CategoriesProperties.fromJson(json['categories_properties']) : null; | |
_categoriesPropertiesTags = json['categories_properties_tags'].cast<String>(); | |
_categoriesTags = json['categories_tags'].cast<String>(); | |
_categoryProperties = json['category_properties'] != null ? new CategoryProperties.fromJson(json['category_properties']) : null; | |
if (json['checkers'] != null) { | |
_checkers = <Null>[]; | |
json['checkers'].forEach((v) { _checkers!.add(new Null.fromJson(v)); }); | |
} | |
if (json['checkers_tags'] != null) { | |
_checkersTags = <Null>[]; | |
json['checkers_tags'].forEach((v) { _checkersTags!.add(new Null.fromJson(v)); }); | |
} | |
_ciqualFoodNameTags = json['ciqual_food_name_tags'].cast<String>(); | |
if (json['cities_tags'] != null) { | |
_citiesTags = <Null>[]; | |
json['cities_tags'].forEach((v) { _citiesTags!.add(new Null.fromJson(v)); }); | |
} | |
_code = json['code']; | |
_codesTags = json['codes_tags'].cast<String>(); | |
_comparedToCategory = json['compared_to_category']; | |
_complete = json['complete']; | |
_completeness = json['completeness']; | |
if (json['correctors'] != null) { | |
_correctors = <Null>[]; | |
json['correctors'].forEach((v) { _correctors!.add(new Null.fromJson(v)); }); | |
} | |
_correctorsTags = json['correctors_tags'].cast<String>(); | |
_countries = json['countries']; | |
_countriesBeforescanbot = json['countries_beforescanbot']; | |
_countriesHierarchy = json['countries_hierarchy'].cast<String>(); | |
_countriesLc = json['countries_lc']; | |
_countriesTags = json['countries_tags'].cast<String>(); | |
_createdT = json['created_t']; | |
_creator = json['creator']; | |
if (json['data_quality_bugs_tags'] != null) { | |
_dataQualityBugsTags = <Null>[]; | |
json['data_quality_bugs_tags'].forEach((v) { _dataQualityBugsTags!.add(new Null.fromJson(v)); }); | |
} | |
if (json['data_quality_errors_tags'] != null) { | |
_dataQualityErrorsTags = <Null>[]; | |
json['data_quality_errors_tags'].forEach((v) { _dataQualityErrorsTags!.add(new Null.fromJson(v)); }); | |
} | |
_dataQualityInfoTags = json['data_quality_info_tags'].cast<String>(); | |
_dataQualityTags = json['data_quality_tags'].cast<String>(); | |
if (json['data_quality_warnings_tags'] != null) { | |
_dataQualityWarningsTags = <Null>[]; | |
json['data_quality_warnings_tags'].forEach((v) { _dataQualityWarningsTags!.add(new Null.fromJson(v)); }); | |
} | |
_dataSources = json['data_sources']; | |
_dataSourcesTags = json['data_sources_tags'].cast<String>(); | |
_debugParamSortedLangs = json['debug_param_sorted_langs'].cast<String>(); | |
_ecoscoreData = json['ecoscore_data'] != null ? new EcoscoreData.fromJson(json['ecoscore_data']) : null; | |
_ecoscoreExtendedData = json['ecoscore_extended_data'] != null ? new EcoscoreExtendedData.fromJson(json['ecoscore_extended_data']) : null; | |
_ecoscoreExtendedDataVersion = json['ecoscore_extended_data_version']; | |
_ecoscoreGrade = json['ecoscore_grade']; | |
_ecoscoreTags = json['ecoscore_tags'].cast<String>(); | |
_editors = json['editors'].cast<String>(); | |
_editorsTags = json['editors_tags'].cast<String>(); | |
_embCodes = json['emb_codes']; | |
_embCodes20141016 = json['emb_codes_20141016']; | |
_embCodesOrig = json['emb_codes_orig']; | |
if (json['emb_codes_tags'] != null) { | |
_embCodesTags = <Null>[]; | |
json['emb_codes_tags'].forEach((v) { _embCodesTags!.add(new Null.fromJson(v)); }); | |
} | |
_entryDatesTags = json['entry_dates_tags'].cast<String>(); | |
_environmentImpactLevel = json['environment_impact_level']; | |
if (json['environment_impact_level_tags'] != null) { | |
_environmentImpactLevelTags = <Null>[]; | |
json['environment_impact_level_tags'].forEach((v) { _environmentImpactLevelTags!.add(new Null.fromJson(v)); }); | |
} | |
_expirationDate = json['expiration_date']; | |
_foodGroups = json['food_groups']; | |
_foodGroupsTags = json['food_groups_tags'].cast<String>(); | |
_fruitsVegetablesNuts100gEstimate = json['fruits-vegetables-nuts_100g_estimate']; | |
_genericName = json['generic_name']; | |
_genericNameAz = json['generic_name_az']; | |
_genericNameBg = json['generic_name_bg']; | |
_genericNameDe = json['generic_name_de']; | |
_genericNameEn = json['generic_name_en']; | |
_genericNameFr = json['generic_name_fr']; | |
_genericNameHr = json['generic_name_hr']; | |
_genericNameHu = json['generic_name_hu']; | |
_genericNamePl = json['generic_name_pl']; | |
_genericNamePt = json['generic_name_pt']; | |
_genericNameRo = json['generic_name_ro']; | |
_genericNameSl = json['generic_name_sl']; | |
_id = json['id']; | |
_imageFrontSmallUrl = json['image_front_small_url']; | |
_imageFrontThumbUrl = json['image_front_thumb_url']; | |
_imageFrontUrl = json['image_front_url']; | |
_imageIngredientsSmallUrl = json['image_ingredients_small_url']; | |
_imageIngredientsThumbUrl = json['image_ingredients_thumb_url']; | |
_imageIngredientsUrl = json['image_ingredients_url']; | |
_imageNutritionSmallUrl = json['image_nutrition_small_url']; | |
_imageNutritionThumbUrl = json['image_nutrition_thumb_url']; | |
_imageNutritionUrl = json['image_nutrition_url']; | |
_imagePackagingSmallUrl = json['image_packaging_small_url']; | |
_imagePackagingThumbUrl = json['image_packaging_thumb_url']; | |
_imagePackagingUrl = json['image_packaging_url']; | |
_imageSmallUrl = json['image_small_url']; | |
_imageThumbUrl = json['image_thumb_url']; | |
_imageUrl = json['image_url']; | |
_images = json['images'] != null ? new Images.fromJson(json['images']) : null; | |
_informers = json['informers'].cast<String>(); | |
_informersTags = json['informers_tags'].cast<String>(); | |
if (json['ingredients'] != null) { | |
_ingredients = <Ingredients>[]; | |
json['ingredients'].forEach((v) { _ingredients!.add(new Ingredients.fromJson(v)); }); | |
} | |
_ingredientsAnalysis = json['ingredients_analysis'] != null ? new IngredientsAnalysis.fromJson(json['ingredients_analysis']) : null; | |
_ingredientsAnalysisTags = json['ingredients_analysis_tags'].cast<String>(); | |
_ingredientsDebug = json['ingredients_debug'].cast<String>(); | |
_ingredientsFromOrThatMayBeFromPalmOilN = json['ingredients_from_or_that_may_be_from_palm_oil_n']; | |
_ingredientsFromPalmOilN = json['ingredients_from_palm_oil_n']; | |
if (json['ingredients_from_palm_oil_tags'] != null) { | |
_ingredientsFromPalmOilTags = <Null>[]; | |
json['ingredients_from_palm_oil_tags'].forEach((v) { _ingredientsFromPalmOilTags!.add(new Null.fromJson(v)); }); | |
} | |
_ingredientsHierarchy = json['ingredients_hierarchy'].cast<String>(); | |
_ingredientsIdsDebug = json['ingredients_ids_debug'].cast<String>(); | |
_ingredientsN = json['ingredients_n']; | |
_ingredientsNTags = json['ingredients_n_tags'].cast<String>(); | |
_ingredientsOriginalTags = json['ingredients_original_tags'].cast<String>(); | |
_ingredientsPercentAnalysis = json['ingredients_percent_analysis']; | |
_ingredientsTags = json['ingredients_tags'].cast<String>(); | |
_ingredientsText = json['ingredients_text']; | |
_ingredientsTextAz = json['ingredients_text_az']; | |
_ingredientsTextBg = json['ingredients_text_bg']; | |
_ingredientsTextDe = json['ingredients_text_de']; | |
_ingredientsTextDebug = json['ingredients_text_debug']; | |
_ingredientsTextEn = json['ingredients_text_en']; | |
_ingredientsTextFr = json['ingredients_text_fr']; | |
_ingredientsTextHr = json['ingredients_text_hr']; | |
_ingredientsTextHu = json['ingredients_text_hu']; | |
_ingredientsTextPl = json['ingredients_text_pl']; | |
_ingredientsTextPt = json['ingredients_text_pt']; | |
_ingredientsTextRo = json['ingredients_text_ro']; | |
_ingredientsTextSl = json['ingredients_text_sl']; | |
_ingredientsTextWithAllergens = json['ingredients_text_with_allergens']; | |
_ingredientsTextWithAllergensAz = json['ingredients_text_with_allergens_az']; | |
_ingredientsTextWithAllergensBg = json['ingredients_text_with_allergens_bg']; | |
_ingredientsTextWithAllergensDe = json['ingredients_text_with_allergens_de']; | |
_ingredientsTextWithAllergensEn = json['ingredients_text_with_allergens_en']; | |
_ingredientsTextWithAllergensFr = json['ingredients_text_with_allergens_fr']; | |
_ingredientsTextWithAllergensHr = json['ingredients_text_with_allergens_hr']; | |
_ingredientsTextWithAllergensHu = json['ingredients_text_with_allergens_hu']; | |
_ingredientsTextWithAllergensPl = json['ingredients_text_with_allergens_pl']; | |
_ingredientsTextWithAllergensPt = json['ingredients_text_with_allergens_pt']; | |
_ingredientsTextWithAllergensRo = json['ingredients_text_with_allergens_ro']; | |
_ingredientsTextWithAllergensSl = json['ingredients_text_with_allergens_sl']; | |
_ingredientsThatMayBeFromPalmOilN = json['ingredients_that_may_be_from_palm_oil_n']; | |
if (json['ingredients_that_may_be_from_palm_oil_tags'] != null) { | |
_ingredientsThatMayBeFromPalmOilTags = <Null>[]; | |
json['ingredients_that_may_be_from_palm_oil_tags'].forEach((v) { _ingredientsThatMayBeFromPalmOilTags!.add(new Null.fromJson(v)); }); | |
} | |
_ingredientsWithSpecifiedPercentN = json['ingredients_with_specified_percent_n']; | |
_ingredientsWithSpecifiedPercentSum = json['ingredients_with_specified_percent_sum']; | |
_ingredientsWithUnspecifiedPercentN = json['ingredients_with_unspecified_percent_n']; | |
_ingredientsWithUnspecifiedPercentSum = json['ingredients_with_unspecified_percent_sum']; | |
_interfaceVersionModified = json['interface_version_modified']; | |
_knownIngredientsN = json['known_ingredients_n']; | |
_labels = json['labels']; | |
_labelsHierarchy = json['labels_hierarchy'].cast<String>(); | |
_labelsLc = json['labels_lc']; | |
_labelsOld = json['labels_old']; | |
_labelsTags = json['labels_tags'].cast<String>(); | |
_lang = json['lang']; | |
_languages = json['languages'] != null ? new Languages.fromJson(json['languages']) : null; | |
_languagesCodes = json['languages_codes'] != null ? new LanguagesCodes.fromJson(json['languages_codes']) : null; | |
_languagesHierarchy = json['languages_hierarchy'].cast<String>(); | |
_languagesTags = json['languages_tags'].cast<String>(); | |
_lastEditDatesTags = json['last_edit_dates_tags'].cast<String>(); | |
_lastEditor = json['last_editor']; | |
_lastImageDatesTags = json['last_image_dates_tags'].cast<String>(); | |
_lastImageT = json['last_image_t']; | |
_lastModifiedBy = json['last_modified_by']; | |
_lastModifiedT = json['last_modified_t']; | |
_lc = json['lc']; | |
_link = json['link']; | |
if (json['main_countries_tags'] != null) { | |
_mainCountriesTags = <Null>[]; | |
json['main_countries_tags'].forEach((v) { _mainCountriesTags!.add(new Null.fromJson(v)); }); | |
} | |
_manufacturingPlaces = json['manufacturing_places']; | |
if (json['manufacturing_places_tags'] != null) { | |
_manufacturingPlacesTags = <Null>[]; | |
json['manufacturing_places_tags'].forEach((v) { _manufacturingPlacesTags!.add(new Null.fromJson(v)); }); | |
} | |
_maxImgid = json['max_imgid']; | |
if (json['minerals_prev_tags'] != null) { | |
_mineralsPrevTags = <Null>[]; | |
json['minerals_prev_tags'].forEach((v) { _mineralsPrevTags!.add(new Null.fromJson(v)); }); | |
} | |
if (json['minerals_tags'] != null) { | |
_mineralsTags = <Null>[]; | |
json['minerals_tags'].forEach((v) { _mineralsTags!.add(new Null.fromJson(v)); }); | |
} | |
_miscTags = json['misc_tags'].cast<String>(); | |
_newAdditivesN = json['new_additives_n']; | |
_noNutritionData = json['no_nutrition_data']; | |
_novaGroup = json['nova_group']; | |
_novaGroupDebug = json['nova_group_debug']; | |
_novaGroups = json['nova_groups']; | |
_novaGroupsMarkers = json['nova_groups_markers'] != null ? new NovaGroupsMarkers.fromJson(json['nova_groups_markers']) : null; | |
_novaGroupsTags = json['nova_groups_tags'].cast<String>(); | |
if (json['nucleotides_prev_tags'] != null) { | |
_nucleotidesPrevTags = <Null>[]; | |
json['nucleotides_prev_tags'].forEach((v) { _nucleotidesPrevTags!.add(new Null.fromJson(v)); }); | |
} | |
if (json['nucleotides_tags'] != null) { | |
_nucleotidesTags = <Null>[]; | |
json['nucleotides_tags'].forEach((v) { _nucleotidesTags!.add(new Null.fromJson(v)); }); | |
} | |
_nutrientLevels = json['nutrient_levels'] != null ? new NutrientLevels.fromJson(json['nutrient_levels']) : null; | |
_nutrientLevelsTags = json['nutrient_levels_tags'].cast<String>(); | |
_nutriments = json['nutriments'] != null ? new Nutriments.fromJson(json['nutriments']) : null; | |
_nutriscoreData = json['nutriscore_data'] != null ? new NutriscoreData.fromJson(json['nutriscore_data']) : null; | |
_nutriscoreGrade = json['nutriscore_grade']; | |
_nutriscoreScore = json['nutriscore_score']; | |
_nutriscoreScoreOpposite = json['nutriscore_score_opposite']; | |
_nutritionData = json['nutrition_data']; | |
_nutritionDataPer = json['nutrition_data_per']; | |
_nutritionDataPrepared = json['nutrition_data_prepared']; | |
_nutritionDataPreparedPer = json['nutrition_data_prepared_per']; | |
_nutritionGradeFr = json['nutrition_grade_fr']; | |
_nutritionGrades = json['nutrition_grades']; | |
_nutritionGradesTags = json['nutrition_grades_tags'].cast<String>(); | |
_nutritionScoreBeverage = json['nutrition_score_beverage']; | |
_nutritionScoreDebug = json['nutrition_score_debug']; | |
_nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredients = json['nutrition_score_warning_fruits_vegetables_nuts_estimate_from_ingredients']; | |
_nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredientsValue = json['nutrition_score_warning_fruits_vegetables_nuts_estimate_from_ingredients_value']; | |
_obsolete = json['obsolete']; | |
_obsoleteSinceDate = json['obsolete_since_date']; | |
_origin = json['origin']; | |
_originAz = json['origin_az']; | |
_originBg = json['origin_bg']; | |
_originDe = json['origin_de']; | |
_originEn = json['origin_en']; | |
_originFr = json['origin_fr']; | |
_originHr = json['origin_hr']; | |
_originHu = json['origin_hu']; | |
_originPl = json['origin_pl']; | |
_originPt = json['origin_pt']; | |
_originRo = json['origin_ro']; | |
_originSl = json['origin_sl']; | |
_origins = json['origins']; | |
if (json['origins_hierarchy'] != null) { | |
_originsHierarchy = <Null>[]; | |
json['origins_hierarchy'].forEach((v) { _originsHierarchy!.add(new Null.fromJson(v)); }); | |
} | |
_originsLc = json['origins_lc']; | |
_originsOld = json['origins_old']; | |
if (json['origins_tags'] != null) { | |
_originsTags = <Null>[]; | |
json['origins_tags'].forEach((v) { _originsTags!.add(new Null.fromJson(v)); }); | |
} | |
if (json['other_nutritional_substances_tags'] != null) { | |
_otherNutritionalSubstancesTags = <Null>[]; | |
json['other_nutritional_substances_tags'].forEach((v) { _otherNutritionalSubstancesTags!.add(new Null.fromJson(v)); }); | |
} | |
_packaging = json['packaging']; | |
_packagingHierarchy = json['packaging_hierarchy'].cast<String>(); | |
_packagingLc = json['packaging_lc']; | |
_packagingOld = json['packaging_old']; | |
_packagingOldBeforeTaxonomization = json['packaging_old_before_taxonomization']; | |
_packagingTags = json['packaging_tags'].cast<String>(); | |
_packagingText = json['packaging_text']; | |
_packagingTextAz = json['packaging_text_az']; | |
_packagingTextBg = json['packaging_text_bg']; | |
_packagingTextDe = json['packaging_text_de']; | |
_packagingTextEn = json['packaging_text_en']; | |
_packagingTextFr = json['packaging_text_fr']; | |
_packagingTextHr = json['packaging_text_hr']; | |
_packagingTextHu = json['packaging_text_hu']; | |
_packagingTextPl = json['packaging_text_pl']; | |
_packagingTextPt = json['packaging_text_pt']; | |
_packagingTextRo = json['packaging_text_ro']; | |
_packagingTextSl = json['packaging_text_sl']; | |
if (json['packagings'] != null) { | |
_packagings = <Packagings>[]; | |
json['packagings'].forEach((v) { _packagings!.add(new Packagings.fromJson(v)); }); | |
} | |
_photographers = json['photographers'].cast<String>(); | |
_photographersTags = json['photographers_tags'].cast<String>(); | |
_pnnsGroups1 = json['pnns_groups_1']; | |
_pnnsGroups1Tags = json['pnns_groups_1_tags'].cast<String>(); | |
_pnnsGroups2 = json['pnns_groups_2']; | |
_pnnsGroups2Tags = json['pnns_groups_2_tags'].cast<String>(); | |
_popularityKey = json['popularity_key']; | |
_popularityTags = json['popularity_tags'].cast<String>(); | |
_productName = json['product_name']; | |
_productNameAz = json['product_name_az']; | |
_productNameBg = json['product_name_bg']; | |
_productNameDe = json['product_name_de']; | |
_productNameEn = json['product_name_en']; | |
_productNameFr = json['product_name_fr']; | |
_productNameHr = json['product_name_hr']; | |
_productNameHu = json['product_name_hu']; | |
_productNamePl = json['product_name_pl']; | |
_productNamePt = json['product_name_pt']; | |
_productNameRo = json['product_name_ro']; | |
_productNameSl = json['product_name_sl']; | |
_productQuantity = json['product_quantity']; | |
_purchasePlaces = json['purchase_places']; | |
_purchasePlacesTags = json['purchase_places_tags'].cast<String>(); | |
_quantity = json['quantity']; | |
if (json['removed_countries_tags'] != null) { | |
_removedCountriesTags = <Null>[]; | |
json['removed_countries_tags'].forEach((v) { _removedCountriesTags!.add(new Null.fromJson(v)); }); | |
} | |
_rev = json['rev']; | |
_scansN = json['scans_n']; | |
_selectedImages = json['selected_images'] != null ? new SelectedImages.fromJson(json['selected_images']) : null; | |
_servingQuantity = json['serving_quantity']; | |
_servingSize = json['serving_size']; | |
_sortkey = json['sortkey']; | |
if (json['sources'] != null) { | |
_sources = <Sources>[]; | |
json['sources'].forEach((v) { _sources!.add(new Sources.fromJson(v)); }); | |
} | |
_states = json['states']; | |
_statesHierarchy = json['states_hierarchy'].cast<String>(); | |
_statesTags = json['states_tags'].cast<String>(); | |
_stores = json['stores']; | |
_storesTags = json['stores_tags'].cast<String>(); | |
_teams = json['teams']; | |
_teamsTags = json['teams_tags'].cast<String>(); | |
_traces = json['traces']; | |
_tracesFromIngredients = json['traces_from_ingredients']; | |
_tracesFromUser = json['traces_from_user']; | |
_tracesHierarchy = json['traces_hierarchy'].cast<String>(); | |
_tracesLc = json['traces_lc']; | |
_tracesTags = json['traces_tags'].cast<String>(); | |
_uniqueScansN = json['unique_scans_n']; | |
_unknownIngredientsN = json['unknown_ingredients_n']; | |
if (json['unknown_nutrients_tags'] != null) { | |
_unknownNutrientsTags = <Null>[]; | |
json['unknown_nutrients_tags'].forEach((v) { _unknownNutrientsTags!.add(new Null.fromJson(v)); }); | |
} | |
_updateKey = json['update_key']; | |
if (json['vitamins_prev_tags'] != null) { | |
_vitaminsPrevTags = <Null>[]; | |
json['vitamins_prev_tags'].forEach((v) { _vitaminsPrevTags!.add(new Null.fromJson(v)); }); | |
} | |
if (json['vitamins_tags'] != null) { | |
_vitaminsTags = <Null>[]; | |
json['vitamins_tags'].forEach((v) { _vitaminsTags!.add(new Null.fromJson(v)); }); | |
} | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['_id'] = this._sId; | |
data['_keywords'] = this._lKeywords; | |
if (this._addedCountriesTags != null) { | |
data['added_countries_tags'] = this._addedCountriesTags!.map((v) => v.toJson()).toList(); | |
} | |
if (this._additivesDebugTags != null) { | |
data['additives_debug_tags'] = this._additivesDebugTags!.map((v) => v.toJson()).toList(); | |
} | |
data['additives_n'] = this._additivesN; | |
data['additives_old_n'] = this._additivesOldN; | |
data['additives_old_tags'] = this._additivesOldTags; | |
data['additives_original_tags'] = this._additivesOriginalTags; | |
data['additives_prev_original_tags'] = this._additivesPrevOriginalTags; | |
data['additives_tags'] = this._additivesTags; | |
data['allergens'] = this._allergens; | |
data['allergens_from_ingredients'] = this._allergensFromIngredients; | |
data['allergens_from_user'] = this._allergensFromUser; | |
if (this._allergensHierarchy != null) { | |
data['allergens_hierarchy'] = this._allergensHierarchy!.map((v) => v.toJson()).toList(); | |
} | |
data['allergens_lc'] = this._allergensLc; | |
if (this._allergensTags != null) { | |
data['allergens_tags'] = this._allergensTags!.map((v) => v.toJson()).toList(); | |
} | |
if (this._aminoAcidsPrevTags != null) { | |
data['amino_acids_prev_tags'] = this._aminoAcidsPrevTags!.map((v) => v.toJson()).toList(); | |
} | |
if (this._aminoAcidsTags != null) { | |
data['amino_acids_tags'] = this._aminoAcidsTags!.map((v) => v.toJson()).toList(); | |
} | |
data['brands'] = this._brands; | |
data['brands_tags'] = this._brandsTags; | |
data['categories'] = this._categories; | |
data['categories_hierarchy'] = this._categoriesHierarchy; | |
data['categories_lc'] = this._categoriesLc; | |
data['categories_old'] = this._categoriesOld; | |
if (this._categoriesProperties != null) { | |
data['categories_properties'] = this._categoriesProperties!.toJson(); | |
} | |
data['categories_properties_tags'] = this._categoriesPropertiesTags; | |
data['categories_tags'] = this._categoriesTags; | |
if (this._categoryProperties != null) { | |
data['category_properties'] = this._categoryProperties!.toJson(); | |
} | |
if (this._checkers != null) { | |
data['checkers'] = this._checkers!.map((v) => v.toJson()).toList(); | |
} | |
if (this._checkersTags != null) { | |
data['checkers_tags'] = this._checkersTags!.map((v) => v.toJson()).toList(); | |
} | |
data['ciqual_food_name_tags'] = this._ciqualFoodNameTags; | |
if (this._citiesTags != null) { | |
data['cities_tags'] = this._citiesTags!.map((v) => v.toJson()).toList(); | |
} | |
data['code'] = this._code; | |
data['codes_tags'] = this._codesTags; | |
data['compared_to_category'] = this._comparedToCategory; | |
data['complete'] = this._complete; | |
data['completeness'] = this._completeness; | |
if (this._correctors != null) { | |
data['correctors'] = this._correctors!.map((v) => v.toJson()).toList(); | |
} | |
data['correctors_tags'] = this._correctorsTags; | |
data['countries'] = this._countries; | |
data['countries_beforescanbot'] = this._countriesBeforescanbot; | |
data['countries_hierarchy'] = this._countriesHierarchy; | |
data['countries_lc'] = this._countriesLc; | |
data['countries_tags'] = this._countriesTags; | |
data['created_t'] = this._createdT; | |
data['creator'] = this._creator; | |
if (this._dataQualityBugsTags != null) { | |
data['data_quality_bugs_tags'] = this._dataQualityBugsTags!.map((v) => v.toJson()).toList(); | |
} | |
if (this._dataQualityErrorsTags != null) { | |
data['data_quality_errors_tags'] = this._dataQualityErrorsTags!.map((v) => v.toJson()).toList(); | |
} | |
data['data_quality_info_tags'] = this._dataQualityInfoTags; | |
data['data_quality_tags'] = this._dataQualityTags; | |
if (this._dataQualityWarningsTags != null) { | |
data['data_quality_warnings_tags'] = this._dataQualityWarningsTags!.map((v) => v.toJson()).toList(); | |
} | |
data['data_sources'] = this._dataSources; | |
data['data_sources_tags'] = this._dataSourcesTags; | |
data['debug_param_sorted_langs'] = this._debugParamSortedLangs; | |
if (this._ecoscoreData != null) { | |
data['ecoscore_data'] = this._ecoscoreData!.toJson(); | |
} | |
if (this._ecoscoreExtendedData != null) { | |
data['ecoscore_extended_data'] = this._ecoscoreExtendedData!.toJson(); | |
} | |
data['ecoscore_extended_data_version'] = this._ecoscoreExtendedDataVersion; | |
data['ecoscore_grade'] = this._ecoscoreGrade; | |
data['ecoscore_tags'] = this._ecoscoreTags; | |
data['editors'] = this._editors; | |
data['editors_tags'] = this._editorsTags; | |
data['emb_codes'] = this._embCodes; | |
data['emb_codes_20141016'] = this._embCodes20141016; | |
data['emb_codes_orig'] = this._embCodesOrig; | |
if (this._embCodesTags != null) { | |
data['emb_codes_tags'] = this._embCodesTags!.map((v) => v.toJson()).toList(); | |
} | |
data['entry_dates_tags'] = this._entryDatesTags; | |
data['environment_impact_level'] = this._environmentImpactLevel; | |
if (this._environmentImpactLevelTags != null) { | |
data['environment_impact_level_tags'] = this._environmentImpactLevelTags!.map((v) => v.toJson()).toList(); | |
} | |
data['expiration_date'] = this._expirationDate; | |
data['food_groups'] = this._foodGroups; | |
data['food_groups_tags'] = this._foodGroupsTags; | |
data['fruits-vegetables-nuts_100g_estimate'] = this._fruitsVegetablesNuts100gEstimate; | |
data['generic_name'] = this._genericName; | |
data['generic_name_az'] = this._genericNameAz; | |
data['generic_name_bg'] = this._genericNameBg; | |
data['generic_name_de'] = this._genericNameDe; | |
data['generic_name_en'] = this._genericNameEn; | |
data['generic_name_fr'] = this._genericNameFr; | |
data['generic_name_hr'] = this._genericNameHr; | |
data['generic_name_hu'] = this._genericNameHu; | |
data['generic_name_pl'] = this._genericNamePl; | |
data['generic_name_pt'] = this._genericNamePt; | |
data['generic_name_ro'] = this._genericNameRo; | |
data['generic_name_sl'] = this._genericNameSl; | |
data['id'] = this._id; | |
data['image_front_small_url'] = this._imageFrontSmallUrl; | |
data['image_front_thumb_url'] = this._imageFrontThumbUrl; | |
data['image_front_url'] = this._imageFrontUrl; | |
data['image_ingredients_small_url'] = this._imageIngredientsSmallUrl; | |
data['image_ingredients_thumb_url'] = this._imageIngredientsThumbUrl; | |
data['image_ingredients_url'] = this._imageIngredientsUrl; | |
data['image_nutrition_small_url'] = this._imageNutritionSmallUrl; | |
data['image_nutrition_thumb_url'] = this._imageNutritionThumbUrl; | |
data['image_nutrition_url'] = this._imageNutritionUrl; | |
data['image_packaging_small_url'] = this._imagePackagingSmallUrl; | |
data['image_packaging_thumb_url'] = this._imagePackagingThumbUrl; | |
data['image_packaging_url'] = this._imagePackagingUrl; | |
data['image_small_url'] = this._imageSmallUrl; | |
data['image_thumb_url'] = this._imageThumbUrl; | |
data['image_url'] = this._imageUrl; | |
if (this._images != null) { | |
data['images'] = this._images!.toJson(); | |
} | |
data['informers'] = this._informers; | |
data['informers_tags'] = this._informersTags; | |
if (this._ingredients != null) { | |
data['ingredients'] = this._ingredients!.map((v) => v.toJson()).toList(); | |
} | |
if (this._ingredientsAnalysis != null) { | |
data['ingredients_analysis'] = this._ingredientsAnalysis!.toJson(); | |
} | |
data['ingredients_analysis_tags'] = this._ingredientsAnalysisTags; | |
data['ingredients_debug'] = this._ingredientsDebug; | |
data['ingredients_from_or_that_may_be_from_palm_oil_n'] = this._ingredientsFromOrThatMayBeFromPalmOilN; | |
data['ingredients_from_palm_oil_n'] = this._ingredientsFromPalmOilN; | |
if (this._ingredientsFromPalmOilTags != null) { | |
data['ingredients_from_palm_oil_tags'] = this._ingredientsFromPalmOilTags!.map((v) => v.toJson()).toList(); | |
} | |
data['ingredients_hierarchy'] = this._ingredientsHierarchy; | |
data['ingredients_ids_debug'] = this._ingredientsIdsDebug; | |
data['ingredients_n'] = this._ingredientsN; | |
data['ingredients_n_tags'] = this._ingredientsNTags; | |
data['ingredients_original_tags'] = this._ingredientsOriginalTags; | |
data['ingredients_percent_analysis'] = this._ingredientsPercentAnalysis; | |
data['ingredients_tags'] = this._ingredientsTags; | |
data['ingredients_text'] = this._ingredientsText; | |
data['ingredients_text_az'] = this._ingredientsTextAz; | |
data['ingredients_text_bg'] = this._ingredientsTextBg; | |
data['ingredients_text_de'] = this._ingredientsTextDe; | |
data['ingredients_text_debug'] = this._ingredientsTextDebug; | |
data['ingredients_text_en'] = this._ingredientsTextEn; | |
data['ingredients_text_fr'] = this._ingredientsTextFr; | |
data['ingredients_text_hr'] = this._ingredientsTextHr; | |
data['ingredients_text_hu'] = this._ingredientsTextHu; | |
data['ingredients_text_pl'] = this._ingredientsTextPl; | |
data['ingredients_text_pt'] = this._ingredientsTextPt; | |
data['ingredients_text_ro'] = this._ingredientsTextRo; | |
data['ingredients_text_sl'] = this._ingredientsTextSl; | |
data['ingredients_text_with_allergens'] = this._ingredientsTextWithAllergens; | |
data['ingredients_text_with_allergens_az'] = this._ingredientsTextWithAllergensAz; | |
data['ingredients_text_with_allergens_bg'] = this._ingredientsTextWithAllergensBg; | |
data['ingredients_text_with_allergens_de'] = this._ingredientsTextWithAllergensDe; | |
data['ingredients_text_with_allergens_en'] = this._ingredientsTextWithAllergensEn; | |
data['ingredients_text_with_allergens_fr'] = this._ingredientsTextWithAllergensFr; | |
data['ingredients_text_with_allergens_hr'] = this._ingredientsTextWithAllergensHr; | |
data['ingredients_text_with_allergens_hu'] = this._ingredientsTextWithAllergensHu; | |
data['ingredients_text_with_allergens_pl'] = this._ingredientsTextWithAllergensPl; | |
data['ingredients_text_with_allergens_pt'] = this._ingredientsTextWithAllergensPt; | |
data['ingredients_text_with_allergens_ro'] = this._ingredientsTextWithAllergensRo; | |
data['ingredients_text_with_allergens_sl'] = this._ingredientsTextWithAllergensSl; | |
data['ingredients_that_may_be_from_palm_oil_n'] = this._ingredientsThatMayBeFromPalmOilN; | |
if (this._ingredientsThatMayBeFromPalmOilTags != null) { | |
data['ingredients_that_may_be_from_palm_oil_tags'] = this._ingredientsThatMayBeFromPalmOilTags!.map((v) => v.toJson()).toList(); | |
} | |
data['ingredients_with_specified_percent_n'] = this._ingredientsWithSpecifiedPercentN; | |
data['ingredients_with_specified_percent_sum'] = this._ingredientsWithSpecifiedPercentSum; | |
data['ingredients_with_unspecified_percent_n'] = this._ingredientsWithUnspecifiedPercentN; | |
data['ingredients_with_unspecified_percent_sum'] = this._ingredientsWithUnspecifiedPercentSum; | |
data['interface_version_modified'] = this._interfaceVersionModified; | |
data['known_ingredients_n'] = this._knownIngredientsN; | |
data['labels'] = this._labels; | |
data['labels_hierarchy'] = this._labelsHierarchy; | |
data['labels_lc'] = this._labelsLc; | |
data['labels_old'] = this._labelsOld; | |
data['labels_tags'] = this._labelsTags; | |
data['lang'] = this._lang; | |
if (this._languages != null) { | |
data['languages'] = this._languages!.toJson(); | |
} | |
if (this._languagesCodes != null) { | |
data['languages_codes'] = this._languagesCodes!.toJson(); | |
} | |
data['languages_hierarchy'] = this._languagesHierarchy; | |
data['languages_tags'] = this._languagesTags; | |
data['last_edit_dates_tags'] = this._lastEditDatesTags; | |
data['last_editor'] = this._lastEditor; | |
data['last_image_dates_tags'] = this._lastImageDatesTags; | |
data['last_image_t'] = this._lastImageT; | |
data['last_modified_by'] = this._lastModifiedBy; | |
data['last_modified_t'] = this._lastModifiedT; | |
data['lc'] = this._lc; | |
data['link'] = this._link; | |
if (this._mainCountriesTags != null) { | |
data['main_countries_tags'] = this._mainCountriesTags!.map((v) => v.toJson()).toList(); | |
} | |
data['manufacturing_places'] = this._manufacturingPlaces; | |
if (this._manufacturingPlacesTags != null) { | |
data['manufacturing_places_tags'] = this._manufacturingPlacesTags!.map((v) => v.toJson()).toList(); | |
} | |
data['max_imgid'] = this._maxImgid; | |
if (this._mineralsPrevTags != null) { | |
data['minerals_prev_tags'] = this._mineralsPrevTags!.map((v) => v.toJson()).toList(); | |
} | |
if (this._mineralsTags != null) { | |
data['minerals_tags'] = this._mineralsTags!.map((v) => v.toJson()).toList(); | |
} | |
data['misc_tags'] = this._miscTags; | |
data['new_additives_n'] = this._newAdditivesN; | |
data['no_nutrition_data'] = this._noNutritionData; | |
data['nova_group'] = this._novaGroup; | |
data['nova_group_debug'] = this._novaGroupDebug; | |
data['nova_groups'] = this._novaGroups; | |
if (this._novaGroupsMarkers != null) { | |
data['nova_groups_markers'] = this._novaGroupsMarkers!.toJson(); | |
} | |
data['nova_groups_tags'] = this._novaGroupsTags; | |
if (this._nucleotidesPrevTags != null) { | |
data['nucleotides_prev_tags'] = this._nucleotidesPrevTags!.map((v) => v.toJson()).toList(); | |
} | |
if (this._nucleotidesTags != null) { | |
data['nucleotides_tags'] = this._nucleotidesTags!.map((v) => v.toJson()).toList(); | |
} | |
if (this._nutrientLevels != null) { | |
data['nutrient_levels'] = this._nutrientLevels!.toJson(); | |
} | |
data['nutrient_levels_tags'] = this._nutrientLevelsTags; | |
if (this._nutriments != null) { | |
data['nutriments'] = this._nutriments!.toJson(); | |
} | |
if (this._nutriscoreData != null) { | |
data['nutriscore_data'] = this._nutriscoreData!.toJson(); | |
} | |
data['nutriscore_grade'] = this._nutriscoreGrade; | |
data['nutriscore_score'] = this._nutriscoreScore; | |
data['nutriscore_score_opposite'] = this._nutriscoreScoreOpposite; | |
data['nutrition_data'] = this._nutritionData; | |
data['nutrition_data_per'] = this._nutritionDataPer; | |
data['nutrition_data_prepared'] = this._nutritionDataPrepared; | |
data['nutrition_data_prepared_per'] = this._nutritionDataPreparedPer; | |
data['nutrition_grade_fr'] = this._nutritionGradeFr; | |
data['nutrition_grades'] = this._nutritionGrades; | |
data['nutrition_grades_tags'] = this._nutritionGradesTags; | |
data['nutrition_score_beverage'] = this._nutritionScoreBeverage; | |
data['nutrition_score_debug'] = this._nutritionScoreDebug; | |
data['nutrition_score_warning_fruits_vegetables_nuts_estimate_from_ingredients'] = this._nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredients; | |
data['nutrition_score_warning_fruits_vegetables_nuts_estimate_from_ingredients_value'] = this._nutritionScoreWarningFruitsVegetablesNutsEstimateFromIngredientsValue; | |
data['obsolete'] = this._obsolete; | |
data['obsolete_since_date'] = this._obsoleteSinceDate; | |
data['origin'] = this._origin; | |
data['origin_az'] = this._originAz; | |
data['origin_bg'] = this._originBg; | |
data['origin_de'] = this._originDe; | |
data['origin_en'] = this._originEn; | |
data['origin_fr'] = this._originFr; | |
data['origin_hr'] = this._originHr; | |
data['origin_hu'] = this._originHu; | |
data['origin_pl'] = this._originPl; | |
data['origin_pt'] = this._originPt; | |
data['origin_ro'] = this._originRo; | |
data['origin_sl'] = this._originSl; | |
data['origins'] = this._origins; | |
if (this._originsHierarchy != null) { | |
data['origins_hierarchy'] = this._originsHierarchy!.map((v) => v.toJson()).toList(); | |
} | |
data['origins_lc'] = this._originsLc; | |
data['origins_old'] = this._originsOld; | |
if (this._originsTags != null) { | |
data['origins_tags'] = this._originsTags!.map((v) => v.toJson()).toList(); | |
} | |
if (this._otherNutritionalSubstancesTags != null) { | |
data['other_nutritional_substances_tags'] = this._otherNutritionalSubstancesTags!.map((v) => v.toJson()).toList(); | |
} | |
data['packaging'] = this._packaging; | |
data['packaging_hierarchy'] = this._packagingHierarchy; | |
data['packaging_lc'] = this._packagingLc; | |
data['packaging_old'] = this._packagingOld; | |
data['packaging_old_before_taxonomization'] = this._packagingOldBeforeTaxonomization; | |
data['packaging_tags'] = this._packagingTags; | |
data['packaging_text'] = this._packagingText; | |
data['packaging_text_az'] = this._packagingTextAz; | |
data['packaging_text_bg'] = this._packagingTextBg; | |
data['packaging_text_de'] = this._packagingTextDe; | |
data['packaging_text_en'] = this._packagingTextEn; | |
data['packaging_text_fr'] = this._packagingTextFr; | |
data['packaging_text_hr'] = this._packagingTextHr; | |
data['packaging_text_hu'] = this._packagingTextHu; | |
data['packaging_text_pl'] = this._packagingTextPl; | |
data['packaging_text_pt'] = this._packagingTextPt; | |
data['packaging_text_ro'] = this._packagingTextRo; | |
data['packaging_text_sl'] = this._packagingTextSl; | |
if (this._packagings != null) { | |
data['packagings'] = this._packagings!.map((v) => v.toJson()).toList(); | |
} | |
data['photographers'] = this._photographers; | |
data['photographers_tags'] = this._photographersTags; | |
data['pnns_groups_1'] = this._pnnsGroups1; | |
data['pnns_groups_1_tags'] = this._pnnsGroups1Tags; | |
data['pnns_groups_2'] = this._pnnsGroups2; | |
data['pnns_groups_2_tags'] = this._pnnsGroups2Tags; | |
data['popularity_key'] = this._popularityKey; | |
data['popularity_tags'] = this._popularityTags; | |
data['product_name'] = this._productName; | |
data['product_name_az'] = this._productNameAz; | |
data['product_name_bg'] = this._productNameBg; | |
data['product_name_de'] = this._productNameDe; | |
data['product_name_en'] = this._productNameEn; | |
data['product_name_fr'] = this._productNameFr; | |
data['product_name_hr'] = this._productNameHr; | |
data['product_name_hu'] = this._productNameHu; | |
data['product_name_pl'] = this._productNamePl; | |
data['product_name_pt'] = this._productNamePt; | |
data['product_name_ro'] = this._productNameRo; | |
data['product_name_sl'] = this._productNameSl; | |
data['product_quantity'] = this._productQuantity; | |
data['purchase_places'] = this._purchasePlaces; | |
data['purchase_places_tags'] = this._purchasePlacesTags; | |
data['quantity'] = this._quantity; | |
if (this._removedCountriesTags != null) { | |
data['removed_countries_tags'] = this._removedCountriesTags!.map((v) => v.toJson()).toList(); | |
} | |
data['rev'] = this._rev; | |
data['scans_n'] = this._scansN; | |
if (this._selectedImages != null) { | |
data['selected_images'] = this._selectedImages!.toJson(); | |
} | |
data['serving_quantity'] = this._servingQuantity; | |
data['serving_size'] = this._servingSize; | |
data['sortkey'] = this._sortkey; | |
if (this._sources != null) { | |
data['sources'] = this._sources!.map((v) => v.toJson()).toList(); | |
} | |
data['states'] = this._states; | |
data['states_hierarchy'] = this._statesHierarchy; | |
data['states_tags'] = this._statesTags; | |
data['stores'] = this._stores; | |
data['stores_tags'] = this._storesTags; | |
data['teams'] = this._teams; | |
data['teams_tags'] = this._teamsTags; | |
data['traces'] = this._traces; | |
data['traces_from_ingredients'] = this._tracesFromIngredients; | |
data['traces_from_user'] = this._tracesFromUser; | |
data['traces_hierarchy'] = this._tracesHierarchy; | |
data['traces_lc'] = this._tracesLc; | |
data['traces_tags'] = this._tracesTags; | |
data['unique_scans_n'] = this._uniqueScansN; | |
data['unknown_ingredients_n'] = this._unknownIngredientsN; | |
if (this._unknownNutrientsTags != null) { | |
data['unknown_nutrients_tags'] = this._unknownNutrientsTags!.map((v) => v.toJson()).toList(); | |
} | |
data['update_key'] = this._updateKey; | |
if (this._vitaminsPrevTags != null) { | |
data['vitamins_prev_tags'] = this._vitaminsPrevTags!.map((v) => v.toJson()).toList(); | |
} | |
if (this._vitaminsTags != null) { | |
data['vitamins_tags'] = this._vitaminsTags!.map((v) => v.toJson()).toList(); | |
} | |
return data; | |
} | |
} | |
class CategoriesProperties { | |
String? _agribalyseProxyFoodCodeEn; | |
String? _ciqualFoodCodeEn; | |
CategoriesProperties({String? agribalyseProxyFoodCodeEn, String? ciqualFoodCodeEn}) { | |
if (agribalyseProxyFoodCodeEn != null) { | |
this._agribalyseProxyFoodCodeEn = agribalyseProxyFoodCodeEn; | |
} | |
if (ciqualFoodCodeEn != null) { | |
this._ciqualFoodCodeEn = ciqualFoodCodeEn; | |
} | |
} | |
String? get agribalyseProxyFoodCodeEn => _agribalyseProxyFoodCodeEn; | |
set agribalyseProxyFoodCodeEn(String? agribalyseProxyFoodCodeEn) => _agribalyseProxyFoodCodeEn = agribalyseProxyFoodCodeEn; | |
String? get ciqualFoodCodeEn => _ciqualFoodCodeEn; | |
set ciqualFoodCodeEn(String? ciqualFoodCodeEn) => _ciqualFoodCodeEn = ciqualFoodCodeEn; | |
CategoriesProperties.fromJson(Map<String, dynamic> json) { | |
_agribalyseProxyFoodCodeEn = json['agribalyse_proxy_food_code:en']; | |
_ciqualFoodCodeEn = json['ciqual_food_code:en']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['agribalyse_proxy_food_code:en'] = this._agribalyseProxyFoodCodeEn; | |
data['ciqual_food_code:en'] = this._ciqualFoodCodeEn; | |
return data; | |
} | |
} | |
class CategoryProperties { | |
String? _ciqualFoodNameEn; | |
String? _ciqualFoodNameFr; | |
CategoryProperties({String? ciqualFoodNameEn, String? ciqualFoodNameFr}) { | |
if (ciqualFoodNameEn != null) { | |
this._ciqualFoodNameEn = ciqualFoodNameEn; | |
} | |
if (ciqualFoodNameFr != null) { | |
this._ciqualFoodNameFr = ciqualFoodNameFr; | |
} | |
} | |
String? get ciqualFoodNameEn => _ciqualFoodNameEn; | |
set ciqualFoodNameEn(String? ciqualFoodNameEn) => _ciqualFoodNameEn = ciqualFoodNameEn; | |
String? get ciqualFoodNameFr => _ciqualFoodNameFr; | |
set ciqualFoodNameFr(String? ciqualFoodNameFr) => _ciqualFoodNameFr = ciqualFoodNameFr; | |
CategoryProperties.fromJson(Map<String, dynamic> json) { | |
_ciqualFoodNameEn = json['ciqual_food_name:en']; | |
_ciqualFoodNameFr = json['ciqual_food_name:fr']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['ciqual_food_name:en'] = this._ciqualFoodNameEn; | |
data['ciqual_food_name:fr'] = this._ciqualFoodNameFr; | |
return data; | |
} | |
} | |
class EcoscoreData { | |
Adjustments? _adjustments; | |
String? _ecoscoreNotApplicableForCategory; | |
String? _status; | |
EcoscoreData({Adjustments? adjustments, String? ecoscoreNotApplicableForCategory, String? status}) { | |
if (adjustments != null) { | |
this._adjustments = adjustments; | |
} | |
if (ecoscoreNotApplicableForCategory != null) { | |
this._ecoscoreNotApplicableForCategory = ecoscoreNotApplicableForCategory; | |
} | |
if (status != null) { | |
this._status = status; | |
} | |
} | |
Adjustments? get adjustments => _adjustments; | |
set adjustments(Adjustments? adjustments) => _adjustments = adjustments; | |
String? get ecoscoreNotApplicableForCategory => _ecoscoreNotApplicableForCategory; | |
set ecoscoreNotApplicableForCategory(String? ecoscoreNotApplicableForCategory) => _ecoscoreNotApplicableForCategory = ecoscoreNotApplicableForCategory; | |
String? get status => _status; | |
set status(String? status) => _status = status; | |
EcoscoreData.fromJson(Map<String, dynamic> json) { | |
_adjustments = json['adjustments'] != null ? new Adjustments.fromJson(json['adjustments']) : null; | |
_ecoscoreNotApplicableForCategory = json['ecoscore_not_applicable_for_category']; | |
_status = json['status']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
if (this._adjustments != null) { | |
data['adjustments'] = this._adjustments!.toJson(); | |
} | |
data['ecoscore_not_applicable_for_category'] = this._ecoscoreNotApplicableForCategory; | |
data['status'] = this._status; | |
return data; | |
} | |
} | |
class Adjustments { | |
Adjustments({}) { | |
} | |
Adjustments.fromJson(Map<String, dynamic> json) { | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
return data; | |
} | |
} | |
class EcoscoreExtendedData { | |
String? _error; | |
EcoscoreExtendedData({String? error}) { | |
if (error != null) { | |
this._error = error; | |
} | |
} | |
String? get error => _error; | |
set error(String? error) => _error = error; | |
EcoscoreExtendedData.fromJson(Map<String, dynamic> json) { | |
_error = json['error']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['error'] = this._error; | |
return data; | |
} | |
} | |
class Images { | |
1? _11; | |
1? _12; | |
Adjustments? _a3; | |
Adjustments? _a4; | |
1? _15; | |
1? _16; | |
1? _17; | |
1? _18; | |
10? _110; | |
10? _111; | |
10? _112; | |
10? _114; | |
1? _115; | |
1? _116; | |
1? _117; | |
1? _118; | |
1? _119; | |
10? _120; | |
10? _121; | |
10? _122; | |
1? _123; | |
1? _124; | |
1? _125; | |
1? _126; | |
1? _127; | |
1? _128; | |
1? _131; | |
1? _132; | |
1? _133; | |
1? _134; | |
1? _135; | |
1? _136; | |
1? _137; | |
1? _138; | |
1? _139; | |
1? _140; | |
1? _141; | |
1? _142; | |
1? _143; | |
1? _144; | |
1? _145; | |
1? _146; | |
1? _147; | |
1? _148; | |
1? _149; | |
1? _150; | |
1? _151; | |
1? _152; | |
1? _153; | |
1? _154; | |
1? _155; | |
1? _156; | |
1? _157; | |
1? _158; | |
1? _159; | |
1? _160; | |
1? _161; | |
1? _162; | |
1? _163; | |
1? _164; | |
1? _165; | |
1? _166; | |
1? _167; | |
1? _168; | |
1? _169; | |
1? _170; | |
1? _171; | |
1? _172; | |
1? _173; | |
1? _174; | |
1? _175; | |
1? _176; | |
1? _177; | |
1? _178; | |
1? _179; | |
1? _180; | |
1? _181; | |
1? _182; | |
1? _183; | |
1? _184; | |
Front? _front; | |
FrontAz? _frontAz; | |
FrontDe? _frontDe; | |
FrontEn? _frontEn; | |
FrontDe? _frontFr; | |
FrontEn? _frontHr; | |
FrontDe? _frontPl; | |
FrontPt? _frontPt; | |
FrontDe? _frontRo; | |
FrontDe? _ingredientsDe; | |
FrontDe? _ingredientsEn; | |
IngredientsFr? _ingredientsFr; | |
FrontEn? _ingredientsHr; | |
FrontAz? _ingredientsPl; | |
FrontPt? _ingredientsPt; | |
IngredientsSl? _ingredientsSl; | |
Front? _nutrition; | |
FrontDe? _nutritionDe; | |
FrontDe? _nutritionEn; | |
Front? _nutritionFr; | |
FrontEn? _nutritionHr; | |
FrontAz? _nutritionPl; | |
FrontPt? _nutritionPt; | |
FrontDe? _nutritionRo; | |
IngredientsSl? _nutritionSl; | |
FrontDe? _packagingEn; | |
FrontEn? _packagingHr; | |
FrontPt? _packagingPt; | |
Images({1? 11, 1? 12, Adjustments? a3, Adjustments? a4, 1? 15, 1? 16, 1? 17, 1? 18, 10? 110, 10? 111, 10? 112, 10? 114, 1? 115, 1? 116, 1? 117, 1? 118, 1? 119, 10? 120, 10? 121, 10? 122, 1? 123, 1? 124, 1? 125, 1? 126, 1? 127, 1? 128, 1? 131, 1? 132, 1? 133, 1? 134, 1? 135, 1? 136, 1? 137, 1? 138, 1? 139, 1? 140, 1? 141, 1? 142, 1? 143, 1? 144, 1? 145, 1? 146, 1? 147, 1? 148, 1? 149, 1? 150, 1? 151, 1? 152, 1? 153, 1? 154, 1? 155, 1? 156, 1? 157, 1? 158, 1? 159, 1? 160, 1? 161, 1? 162, 1? 163, 1? 164, 1? 165, 1? 166, 1? 167, 1? 168, 1? 169, 1? 170, 1? 171, 1? 172, 1? 173, 1? 174, 1? 175, 1? 176, 1? 177, 1? 178, 1? 179, 1? 180, 1? 181, 1? 182, 1? 183, 1? 184, Front? front, FrontAz? frontAz, FrontDe? frontDe, FrontEn? frontEn, FrontDe? frontFr, FrontEn? frontHr, FrontDe? frontPl, FrontPt? frontPt, FrontDe? frontRo, FrontDe? ingredientsDe, FrontDe? ingredientsEn, IngredientsFr? ingredientsFr, FrontEn? ingredientsHr, FrontAz? ingredientsPl, FrontPt? ingredientsPt, IngredientsSl? ingredientsSl, Front? nutrition, FrontDe? nutritionDe, FrontDe? nutritionEn, Front? nutritionFr, FrontEn? nutritionHr, FrontAz? nutritionPl, FrontPt? nutritionPt, FrontDe? nutritionRo, IngredientsSl? nutritionSl, FrontDe? packagingEn, FrontEn? packagingHr, FrontPt? packagingPt}) { | |
if (11 != null) { | |
this._11 = 11; | |
} | |
if (12 != null) { | |
this._12 = 12; | |
} | |
if (a3 != null) { | |
this._a3 = a3; | |
} | |
if (a4 != null) { | |
this._a4 = a4; | |
} | |
if (15 != null) { | |
this._15 = 15; | |
} | |
if (16 != null) { | |
this._16 = 16; | |
} | |
if (17 != null) { | |
this._17 = 17; | |
} | |
if (18 != null) { | |
this._18 = 18; | |
} | |
if (110 != null) { | |
this._110 = 110; | |
} | |
if (111 != null) { | |
this._111 = 111; | |
} | |
if (112 != null) { | |
this._112 = 112; | |
} | |
if (114 != null) { | |
this._114 = 114; | |
} | |
if (115 != null) { | |
this._115 = 115; | |
} | |
if (116 != null) { | |
this._116 = 116; | |
} | |
if (117 != null) { | |
this._117 = 117; | |
} | |
if (118 != null) { | |
this._118 = 118; | |
} | |
if (119 != null) { | |
this._119 = 119; | |
} | |
if (120 != null) { | |
this._120 = 120; | |
} | |
if (121 != null) { | |
this._121 = 121; | |
} | |
if (122 != null) { | |
this._122 = 122; | |
} | |
if (123 != null) { | |
this._123 = 123; | |
} | |
if (124 != null) { | |
this._124 = 124; | |
} | |
if (125 != null) { | |
this._125 = 125; | |
} | |
if (126 != null) { | |
this._126 = 126; | |
} | |
if (127 != null) { | |
this._127 = 127; | |
} | |
if (128 != null) { | |
this._128 = 128; | |
} | |
if (131 != null) { | |
this._131 = 131; | |
} | |
if (132 != null) { | |
this._132 = 132; | |
} | |
if (133 != null) { | |
this._133 = 133; | |
} | |
if (134 != null) { | |
this._134 = 134; | |
} | |
if (135 != null) { | |
this._135 = 135; | |
} | |
if (136 != null) { | |
this._136 = 136; | |
} | |
if (137 != null) { | |
this._137 = 137; | |
} | |
if (138 != null) { | |
this._138 = 138; | |
} | |
if (139 != null) { | |
this._139 = 139; | |
} | |
if (140 != null) { | |
this._140 = 140; | |
} | |
if (141 != null) { | |
this._141 = 141; | |
} | |
if (142 != null) { | |
this._142 = 142; | |
} | |
if (143 != null) { | |
this._143 = 143; | |
} | |
if (144 != null) { | |
this._144 = 144; | |
} | |
if (145 != null) { | |
this._145 = 145; | |
} | |
if (146 != null) { | |
this._146 = 146; | |
} | |
if (147 != null) { | |
this._147 = 147; | |
} | |
if (148 != null) { | |
this._148 = 148; | |
} | |
if (149 != null) { | |
this._149 = 149; | |
} | |
if (150 != null) { | |
this._150 = 150; | |
} | |
if (151 != null) { | |
this._151 = 151; | |
} | |
if (152 != null) { | |
this._152 = 152; | |
} | |
if (153 != null) { | |
this._153 = 153; | |
} | |
if (154 != null) { | |
this._154 = 154; | |
} | |
if (155 != null) { | |
this._155 = 155; | |
} | |
if (156 != null) { | |
this._156 = 156; | |
} | |
if (157 != null) { | |
this._157 = 157; | |
} | |
if (158 != null) { | |
this._158 = 158; | |
} | |
if (159 != null) { | |
this._159 = 159; | |
} | |
if (160 != null) { | |
this._160 = 160; | |
} | |
if (161 != null) { | |
this._161 = 161; | |
} | |
if (162 != null) { | |
this._162 = 162; | |
} | |
if (163 != null) { | |
this._163 = 163; | |
} | |
if (164 != null) { | |
this._164 = 164; | |
} | |
if (165 != null) { | |
this._165 = 165; | |
} | |
if (166 != null) { | |
this._166 = 166; | |
} | |
if (167 != null) { | |
this._167 = 167; | |
} | |
if (168 != null) { | |
this._168 = 168; | |
} | |
if (169 != null) { | |
this._169 = 169; | |
} | |
if (170 != null) { | |
this._170 = 170; | |
} | |
if (171 != null) { | |
this._171 = 171; | |
} | |
if (172 != null) { | |
this._172 = 172; | |
} | |
if (173 != null) { | |
this._173 = 173; | |
} | |
if (174 != null) { | |
this._174 = 174; | |
} | |
if (175 != null) { | |
this._175 = 175; | |
} | |
if (176 != null) { | |
this._176 = 176; | |
} | |
if (177 != null) { | |
this._177 = 177; | |
} | |
if (178 != null) { | |
this._178 = 178; | |
} | |
if (179 != null) { | |
this._179 = 179; | |
} | |
if (180 != null) { | |
this._180 = 180; | |
} | |
if (181 != null) { | |
this._181 = 181; | |
} | |
if (182 != null) { | |
this._182 = 182; | |
} | |
if (183 != null) { | |
this._183 = 183; | |
} | |
if (184 != null) { | |
this._184 = 184; | |
} | |
if (front != null) { | |
this._front = front; | |
} | |
if (frontAz != null) { | |
this._frontAz = frontAz; | |
} | |
if (frontDe != null) { | |
this._frontDe = frontDe; | |
} | |
if (frontEn != null) { | |
this._frontEn = frontEn; | |
} | |
if (frontFr != null) { | |
this._frontFr = frontFr; | |
} | |
if (frontHr != null) { | |
this._frontHr = frontHr; | |
} | |
if (frontPl != null) { | |
this._frontPl = frontPl; | |
} | |
if (frontPt != null) { | |
this._frontPt = frontPt; | |
} | |
if (frontRo != null) { | |
this._frontRo = frontRo; | |
} | |
if (ingredientsDe != null) { | |
this._ingredientsDe = ingredientsDe; | |
} | |
if (ingredientsEn != null) { | |
this._ingredientsEn = ingredientsEn; | |
} | |
if (ingredientsFr != null) { | |
this._ingredientsFr = ingredientsFr; | |
} | |
if (ingredientsHr != null) { | |
this._ingredientsHr = ingredientsHr; | |
} | |
if (ingredientsPl != null) { | |
this._ingredientsPl = ingredientsPl; | |
} | |
if (ingredientsPt != null) { | |
this._ingredientsPt = ingredientsPt; | |
} | |
if (ingredientsSl != null) { | |
this._ingredientsSl = ingredientsSl; | |
} | |
if (nutrition != null) { | |
this._nutrition = nutrition; | |
} | |
if (nutritionDe != null) { | |
this._nutritionDe = nutritionDe; | |
} | |
if (nutritionEn != null) { | |
this._nutritionEn = nutritionEn; | |
} | |
if (nutritionFr != null) { | |
this._nutritionFr = nutritionFr; | |
} | |
if (nutritionHr != null) { | |
this._nutritionHr = nutritionHr; | |
} | |
if (nutritionPl != null) { | |
this._nutritionPl = nutritionPl; | |
} | |
if (nutritionPt != null) { | |
this._nutritionPt = nutritionPt; | |
} | |
if (nutritionRo != null) { | |
this._nutritionRo = nutritionRo; | |
} | |
if (nutritionSl != null) { | |
this._nutritionSl = nutritionSl; | |
} | |
if (packagingEn != null) { | |
this._packagingEn = packagingEn; | |
} | |
if (packagingHr != null) { | |
this._packagingHr = packagingHr; | |
} | |
if (packagingPt != null) { | |
this._packagingPt = packagingPt; | |
} | |
} | |
1? get 11 => _11; | |
set 11(1? 11) => _11 = 11; | |
1? get 12 => _12; | |
set 12(1? 12) => _12 = 12; | |
Adjustments? get a3 => _a3; | |
set a3(Adjustments? a3) => _a3 = a3; | |
Adjustments? get a4 => _a4; | |
set a4(Adjustments? a4) => _a4 = a4; | |
1? get 15 => _15; | |
set 15(1? 15) => _15 = 15; | |
1? get 16 => _16; | |
set 16(1? 16) => _16 = 16; | |
1? get 17 => _17; | |
set 17(1? 17) => _17 = 17; | |
1? get 18 => _18; | |
set 18(1? 18) => _18 = 18; | |
10? get 110 => _110; | |
set 110(10? 110) => _110 = 110; | |
10? get 111 => _111; | |
set 111(10? 111) => _111 = 111; | |
10? get 112 => _112; | |
set 112(10? 112) => _112 = 112; | |
10? get 114 => _114; | |
set 114(10? 114) => _114 = 114; | |
1? get 115 => _115; | |
set 115(1? 115) => _115 = 115; | |
1? get 116 => _116; | |
set 116(1? 116) => _116 = 116; | |
1? get 117 => _117; | |
set 117(1? 117) => _117 = 117; | |
1? get 118 => _118; | |
set 118(1? 118) => _118 = 118; | |
1? get 119 => _119; | |
set 119(1? 119) => _119 = 119; | |
10? get 120 => _120; | |
set 120(10? 120) => _120 = 120; | |
10? get 121 => _121; | |
set 121(10? 121) => _121 = 121; | |
10? get 122 => _122; | |
set 122(10? 122) => _122 = 122; | |
1? get 123 => _123; | |
set 123(1? 123) => _123 = 123; | |
1? get 124 => _124; | |
set 124(1? 124) => _124 = 124; | |
1? get 125 => _125; | |
set 125(1? 125) => _125 = 125; | |
1? get 126 => _126; | |
set 126(1? 126) => _126 = 126; | |
1? get 127 => _127; | |
set 127(1? 127) => _127 = 127; | |
1? get 128 => _128; | |
set 128(1? 128) => _128 = 128; | |
1? get 131 => _131; | |
set 131(1? 131) => _131 = 131; | |
1? get 132 => _132; | |
set 132(1? 132) => _132 = 132; | |
1? get 133 => _133; | |
set 133(1? 133) => _133 = 133; | |
1? get 134 => _134; | |
set 134(1? 134) => _134 = 134; | |
1? get 135 => _135; | |
set 135(1? 135) => _135 = 135; | |
1? get 136 => _136; | |
set 136(1? 136) => _136 = 136; | |
1? get 137 => _137; | |
set 137(1? 137) => _137 = 137; | |
1? get 138 => _138; | |
set 138(1? 138) => _138 = 138; | |
1? get 139 => _139; | |
set 139(1? 139) => _139 = 139; | |
1? get 140 => _140; | |
set 140(1? 140) => _140 = 140; | |
1? get 141 => _141; | |
set 141(1? 141) => _141 = 141; | |
1? get 142 => _142; | |
set 142(1? 142) => _142 = 142; | |
1? get 143 => _143; | |
set 143(1? 143) => _143 = 143; | |
1? get 144 => _144; | |
set 144(1? 144) => _144 = 144; | |
1? get 145 => _145; | |
set 145(1? 145) => _145 = 145; | |
1? get 146 => _146; | |
set 146(1? 146) => _146 = 146; | |
1? get 147 => _147; | |
set 147(1? 147) => _147 = 147; | |
1? get 148 => _148; | |
set 148(1? 148) => _148 = 148; | |
1? get 149 => _149; | |
set 149(1? 149) => _149 = 149; | |
1? get 150 => _150; | |
set 150(1? 150) => _150 = 150; | |
1? get 151 => _151; | |
set 151(1? 151) => _151 = 151; | |
1? get 152 => _152; | |
set 152(1? 152) => _152 = 152; | |
1? get 153 => _153; | |
set 153(1? 153) => _153 = 153; | |
1? get 154 => _154; | |
set 154(1? 154) => _154 = 154; | |
1? get 155 => _155; | |
set 155(1? 155) => _155 = 155; | |
1? get 156 => _156; | |
set 156(1? 156) => _156 = 156; | |
1? get 157 => _157; | |
set 157(1? 157) => _157 = 157; | |
1? get 158 => _158; | |
set 158(1? 158) => _158 = 158; | |
1? get 159 => _159; | |
set 159(1? 159) => _159 = 159; | |
1? get 160 => _160; | |
set 160(1? 160) => _160 = 160; | |
1? get 161 => _161; | |
set 161(1? 161) => _161 = 161; | |
1? get 162 => _162; | |
set 162(1? 162) => _162 = 162; | |
1? get 163 => _163; | |
set 163(1? 163) => _163 = 163; | |
1? get 164 => _164; | |
set 164(1? 164) => _164 = 164; | |
1? get 165 => _165; | |
set 165(1? 165) => _165 = 165; | |
1? get 166 => _166; | |
set 166(1? 166) => _166 = 166; | |
1? get 167 => _167; | |
set 167(1? 167) => _167 = 167; | |
1? get 168 => _168; | |
set 168(1? 168) => _168 = 168; | |
1? get 169 => _169; | |
set 169(1? 169) => _169 = 169; | |
1? get 170 => _170; | |
set 170(1? 170) => _170 = 170; | |
1? get 171 => _171; | |
set 171(1? 171) => _171 = 171; | |
1? get 172 => _172; | |
set 172(1? 172) => _172 = 172; | |
1? get 173 => _173; | |
set 173(1? 173) => _173 = 173; | |
1? get 174 => _174; | |
set 174(1? 174) => _174 = 174; | |
1? get 175 => _175; | |
set 175(1? 175) => _175 = 175; | |
1? get 176 => _176; | |
set 176(1? 176) => _176 = 176; | |
1? get 177 => _177; | |
set 177(1? 177) => _177 = 177; | |
1? get 178 => _178; | |
set 178(1? 178) => _178 = 178; | |
1? get 179 => _179; | |
set 179(1? 179) => _179 = 179; | |
1? get 180 => _180; | |
set 180(1? 180) => _180 = 180; | |
1? get 181 => _181; | |
set 181(1? 181) => _181 = 181; | |
1? get 182 => _182; | |
set 182(1? 182) => _182 = 182; | |
1? get 183 => _183; | |
set 183(1? 183) => _183 = 183; | |
1? get 184 => _184; | |
set 184(1? 184) => _184 = 184; | |
Front? get front => _front; | |
set front(Front? front) => _front = front; | |
FrontAz? get frontAz => _frontAz; | |
set frontAz(FrontAz? frontAz) => _frontAz = frontAz; | |
FrontDe? get frontDe => _frontDe; | |
set frontDe(FrontDe? frontDe) => _frontDe = frontDe; | |
FrontEn? get frontEn => _frontEn; | |
set frontEn(FrontEn? frontEn) => _frontEn = frontEn; | |
FrontDe? get frontFr => _frontFr; | |
set frontFr(FrontDe? frontFr) => _frontFr = frontFr; | |
FrontEn? get frontHr => _frontHr; | |
set frontHr(FrontEn? frontHr) => _frontHr = frontHr; | |
FrontDe? get frontPl => _frontPl; | |
set frontPl(FrontDe? frontPl) => _frontPl = frontPl; | |
FrontPt? get frontPt => _frontPt; | |
set frontPt(FrontPt? frontPt) => _frontPt = frontPt; | |
FrontDe? get frontRo => _frontRo; | |
set frontRo(FrontDe? frontRo) => _frontRo = frontRo; | |
FrontDe? get ingredientsDe => _ingredientsDe; | |
set ingredientsDe(FrontDe? ingredientsDe) => _ingredientsDe = ingredientsDe; | |
FrontDe? get ingredientsEn => _ingredientsEn; | |
set ingredientsEn(FrontDe? ingredientsEn) => _ingredientsEn = ingredientsEn; | |
IngredientsFr? get ingredientsFr => _ingredientsFr; | |
set ingredientsFr(IngredientsFr? ingredientsFr) => _ingredientsFr = ingredientsFr; | |
FrontEn? get ingredientsHr => _ingredientsHr; | |
set ingredientsHr(FrontEn? ingredientsHr) => _ingredientsHr = ingredientsHr; | |
FrontAz? get ingredientsPl => _ingredientsPl; | |
set ingredientsPl(FrontAz? ingredientsPl) => _ingredientsPl = ingredientsPl; | |
FrontPt? get ingredientsPt => _ingredientsPt; | |
set ingredientsPt(FrontPt? ingredientsPt) => _ingredientsPt = ingredientsPt; | |
IngredientsSl? get ingredientsSl => _ingredientsSl; | |
set ingredientsSl(IngredientsSl? ingredientsSl) => _ingredientsSl = ingredientsSl; | |
Front? get nutrition => _nutrition; | |
set nutrition(Front? nutrition) => _nutrition = nutrition; | |
FrontDe? get nutritionDe => _nutritionDe; | |
set nutritionDe(FrontDe? nutritionDe) => _nutritionDe = nutritionDe; | |
FrontDe? get nutritionEn => _nutritionEn; | |
set nutritionEn(FrontDe? nutritionEn) => _nutritionEn = nutritionEn; | |
Front? get nutritionFr => _nutritionFr; | |
set nutritionFr(Front? nutritionFr) => _nutritionFr = nutritionFr; | |
FrontEn? get nutritionHr => _nutritionHr; | |
set nutritionHr(FrontEn? nutritionHr) => _nutritionHr = nutritionHr; | |
FrontAz? get nutritionPl => _nutritionPl; | |
set nutritionPl(FrontAz? nutritionPl) => _nutritionPl = nutritionPl; | |
FrontPt? get nutritionPt => _nutritionPt; | |
set nutritionPt(FrontPt? nutritionPt) => _nutritionPt = nutritionPt; | |
FrontDe? get nutritionRo => _nutritionRo; | |
set nutritionRo(FrontDe? nutritionRo) => _nutritionRo = nutritionRo; | |
IngredientsSl? get nutritionSl => _nutritionSl; | |
set nutritionSl(IngredientsSl? nutritionSl) => _nutritionSl = nutritionSl; | |
FrontDe? get packagingEn => _packagingEn; | |
set packagingEn(FrontDe? packagingEn) => _packagingEn = packagingEn; | |
FrontEn? get packagingHr => _packagingHr; | |
set packagingHr(FrontEn? packagingHr) => _packagingHr = packagingHr; | |
FrontPt? get packagingPt => _packagingPt; | |
set packagingPt(FrontPt? packagingPt) => _packagingPt = packagingPt; | |
Images.fromJson(Map<String, dynamic> json) { | |
_11 = json['1'] != null ? new 1.fromJson(json['1']) : null; | |
_12 = json['2'] != null ? new 1.fromJson(json['2']) : null; | |
_a3 = json['3'] != null ? new Adjustments.fromJson(json['3']) : null; | |
_a4 = json['4'] != null ? new Adjustments.fromJson(json['4']) : null; | |
_15 = json['5'] != null ? new 1.fromJson(json['5']) : null; | |
_16 = json['6'] != null ? new 1.fromJson(json['6']) : null; | |
_17 = json['7'] != null ? new 1.fromJson(json['7']) : null; | |
_18 = json['8'] != null ? new 1.fromJson(json['8']) : null; | |
_110 = json['10'] != null ? new 10.fromJson(json['10']) : null; | |
_111 = json['11'] != null ? new 10.fromJson(json['11']) : null; | |
_112 = json['12'] != null ? new 10.fromJson(json['12']) : null; | |
_114 = json['14'] != null ? new 10.fromJson(json['14']) : null; | |
_115 = json['15'] != null ? new 1.fromJson(json['15']) : null; | |
_116 = json['16'] != null ? new 1.fromJson(json['16']) : null; | |
_117 = json['17'] != null ? new 1.fromJson(json['17']) : null; | |
_118 = json['18'] != null ? new 1.fromJson(json['18']) : null; | |
_119 = json['19'] != null ? new 1.fromJson(json['19']) : null; | |
_120 = json['20'] != null ? new 10.fromJson(json['20']) : null; | |
_121 = json['21'] != null ? new 10.fromJson(json['21']) : null; | |
_122 = json['22'] != null ? new 10.fromJson(json['22']) : null; | |
_123 = json['23'] != null ? new 1.fromJson(json['23']) : null; | |
_124 = json['24'] != null ? new 1.fromJson(json['24']) : null; | |
_125 = json['25'] != null ? new 1.fromJson(json['25']) : null; | |
_126 = json['26'] != null ? new 1.fromJson(json['26']) : null; | |
_127 = json['27'] != null ? new 1.fromJson(json['27']) : null; | |
_128 = json['28'] != null ? new 1.fromJson(json['28']) : null; | |
_131 = json['31'] != null ? new 1.fromJson(json['31']) : null; | |
_132 = json['32'] != null ? new 1.fromJson(json['32']) : null; | |
_133 = json['33'] != null ? new 1.fromJson(json['33']) : null; | |
_134 = json['34'] != null ? new 1.fromJson(json['34']) : null; | |
_135 = json['35'] != null ? new 1.fromJson(json['35']) : null; | |
_136 = json['36'] != null ? new 1.fromJson(json['36']) : null; | |
_137 = json['37'] != null ? new 1.fromJson(json['37']) : null; | |
_138 = json['38'] != null ? new 1.fromJson(json['38']) : null; | |
_139 = json['39'] != null ? new 1.fromJson(json['39']) : null; | |
_140 = json['40'] != null ? new 1.fromJson(json['40']) : null; | |
_141 = json['41'] != null ? new 1.fromJson(json['41']) : null; | |
_142 = json['42'] != null ? new 1.fromJson(json['42']) : null; | |
_143 = json['43'] != null ? new 1.fromJson(json['43']) : null; | |
_144 = json['44'] != null ? new 1.fromJson(json['44']) : null; | |
_145 = json['45'] != null ? new 1.fromJson(json['45']) : null; | |
_146 = json['46'] != null ? new 1.fromJson(json['46']) : null; | |
_147 = json['47'] != null ? new 1.fromJson(json['47']) : null; | |
_148 = json['48'] != null ? new 1.fromJson(json['48']) : null; | |
_149 = json['49'] != null ? new 1.fromJson(json['49']) : null; | |
_150 = json['50'] != null ? new 1.fromJson(json['50']) : null; | |
_151 = json['51'] != null ? new 1.fromJson(json['51']) : null; | |
_152 = json['52'] != null ? new 1.fromJson(json['52']) : null; | |
_153 = json['53'] != null ? new 1.fromJson(json['53']) : null; | |
_154 = json['54'] != null ? new 1.fromJson(json['54']) : null; | |
_155 = json['55'] != null ? new 1.fromJson(json['55']) : null; | |
_156 = json['56'] != null ? new 1.fromJson(json['56']) : null; | |
_157 = json['57'] != null ? new 1.fromJson(json['57']) : null; | |
_158 = json['58'] != null ? new 1.fromJson(json['58']) : null; | |
_159 = json['59'] != null ? new 1.fromJson(json['59']) : null; | |
_160 = json['60'] != null ? new 1.fromJson(json['60']) : null; | |
_161 = json['61'] != null ? new 1.fromJson(json['61']) : null; | |
_162 = json['62'] != null ? new 1.fromJson(json['62']) : null; | |
_163 = json['63'] != null ? new 1.fromJson(json['63']) : null; | |
_164 = json['64'] != null ? new 1.fromJson(json['64']) : null; | |
_165 = json['65'] != null ? new 1.fromJson(json['65']) : null; | |
_166 = json['66'] != null ? new 1.fromJson(json['66']) : null; | |
_167 = json['67'] != null ? new 1.fromJson(json['67']) : null; | |
_168 = json['68'] != null ? new 1.fromJson(json['68']) : null; | |
_169 = json['69'] != null ? new 1.fromJson(json['69']) : null; | |
_170 = json['70'] != null ? new 1.fromJson(json['70']) : null; | |
_171 = json['71'] != null ? new 1.fromJson(json['71']) : null; | |
_172 = json['72'] != null ? new 1.fromJson(json['72']) : null; | |
_173 = json['73'] != null ? new 1.fromJson(json['73']) : null; | |
_174 = json['74'] != null ? new 1.fromJson(json['74']) : null; | |
_175 = json['75'] != null ? new 1.fromJson(json['75']) : null; | |
_176 = json['76'] != null ? new 1.fromJson(json['76']) : null; | |
_177 = json['77'] != null ? new 1.fromJson(json['77']) : null; | |
_178 = json['78'] != null ? new 1.fromJson(json['78']) : null; | |
_179 = json['79'] != null ? new 1.fromJson(json['79']) : null; | |
_180 = json['80'] != null ? new 1.fromJson(json['80']) : null; | |
_181 = json['81'] != null ? new 1.fromJson(json['81']) : null; | |
_182 = json['82'] != null ? new 1.fromJson(json['82']) : null; | |
_183 = json['83'] != null ? new 1.fromJson(json['83']) : null; | |
_184 = json['84'] != null ? new 1.fromJson(json['84']) : null; | |
_front = json['front'] != null ? new Front.fromJson(json['front']) : null; | |
_frontAz = json['front_az'] != null ? new FrontAz.fromJson(json['front_az']) : null; | |
_frontDe = json['front_de'] != null ? new FrontDe.fromJson(json['front_de']) : null; | |
_frontEn = json['front_en'] != null ? new FrontEn.fromJson(json['front_en']) : null; | |
_frontFr = json['front_fr'] != null ? new FrontDe.fromJson(json['front_fr']) : null; | |
_frontHr = json['front_hr'] != null ? new FrontEn.fromJson(json['front_hr']) : null; | |
_frontPl = json['front_pl'] != null ? new FrontDe.fromJson(json['front_pl']) : null; | |
_frontPt = json['front_pt'] != null ? new FrontPt.fromJson(json['front_pt']) : null; | |
_frontRo = json['front_ro'] != null ? new FrontDe.fromJson(json['front_ro']) : null; | |
_ingredientsDe = json['ingredients_de'] != null ? new FrontDe.fromJson(json['ingredients_de']) : null; | |
_ingredientsEn = json['ingredients_en'] != null ? new FrontDe.fromJson(json['ingredients_en']) : null; | |
_ingredientsFr = json['ingredients_fr'] != null ? new IngredientsFr.fromJson(json['ingredients_fr']) : null; | |
_ingredientsHr = json['ingredients_hr'] != null ? new FrontEn.fromJson(json['ingredients_hr']) : null; | |
_ingredientsPl = json['ingredients_pl'] != null ? new FrontAz.fromJson(json['ingredients_pl']) : null; | |
_ingredientsPt = json['ingredients_pt'] != null ? new FrontPt.fromJson(json['ingredients_pt']) : null; | |
_ingredientsSl = json['ingredients_sl'] != null ? new IngredientsSl.fromJson(json['ingredients_sl']) : null; | |
_nutrition = json['nutrition'] != null ? new Front.fromJson(json['nutrition']) : null; | |
_nutritionDe = json['nutrition_de'] != null ? new FrontDe.fromJson(json['nutrition_de']) : null; | |
_nutritionEn = json['nutrition_en'] != null ? new FrontDe.fromJson(json['nutrition_en']) : null; | |
_nutritionFr = json['nutrition_fr'] != null ? new Front.fromJson(json['nutrition_fr']) : null; | |
_nutritionHr = json['nutrition_hr'] != null ? new FrontEn.fromJson(json['nutrition_hr']) : null; | |
_nutritionPl = json['nutrition_pl'] != null ? new FrontAz.fromJson(json['nutrition_pl']) : null; | |
_nutritionPt = json['nutrition_pt'] != null ? new FrontPt.fromJson(json['nutrition_pt']) : null; | |
_nutritionRo = json['nutrition_ro'] != null ? new FrontDe.fromJson(json['nutrition_ro']) : null; | |
_nutritionSl = json['nutrition_sl'] != null ? new IngredientsSl.fromJson(json['nutrition_sl']) : null; | |
_packagingEn = json['packaging_en'] != null ? new FrontDe.fromJson(json['packaging_en']) : null; | |
_packagingHr = json['packaging_hr'] != null ? new FrontEn.fromJson(json['packaging_hr']) : null; | |
_packagingPt = json['packaging_pt'] != null ? new FrontPt.fromJson(json['packaging_pt']) : null; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
if (this._11 != null) { | |
data['1'] = this._11!.toJson(); | |
} | |
if (this._12 != null) { | |
data['2'] = this._12!.toJson(); | |
} | |
if (this._a3 != null) { | |
data['3'] = this._a3!.toJson(); | |
} | |
if (this._a4 != null) { | |
data['4'] = this._a4!.toJson(); | |
} | |
if (this._15 != null) { | |
data['5'] = this._15!.toJson(); | |
} | |
if (this._16 != null) { | |
data['6'] = this._16!.toJson(); | |
} | |
if (this._17 != null) { | |
data['7'] = this._17!.toJson(); | |
} | |
if (this._18 != null) { | |
data['8'] = this._18!.toJson(); | |
} | |
if (this._110 != null) { | |
data['10'] = this._110!.toJson(); | |
} | |
if (this._111 != null) { | |
data['11'] = this._111!.toJson(); | |
} | |
if (this._112 != null) { | |
data['12'] = this._112!.toJson(); | |
} | |
if (this._114 != null) { | |
data['14'] = this._114!.toJson(); | |
} | |
if (this._115 != null) { | |
data['15'] = this._115!.toJson(); | |
} | |
if (this._116 != null) { | |
data['16'] = this._116!.toJson(); | |
} | |
if (this._117 != null) { | |
data['17'] = this._117!.toJson(); | |
} | |
if (this._118 != null) { | |
data['18'] = this._118!.toJson(); | |
} | |
if (this._119 != null) { | |
data['19'] = this._119!.toJson(); | |
} | |
if (this._120 != null) { | |
data['20'] = this._120!.toJson(); | |
} | |
if (this._121 != null) { | |
data['21'] = this._121!.toJson(); | |
} | |
if (this._122 != null) { | |
data['22'] = this._122!.toJson(); | |
} | |
if (this._123 != null) { | |
data['23'] = this._123!.toJson(); | |
} | |
if (this._124 != null) { | |
data['24'] = this._124!.toJson(); | |
} | |
if (this._125 != null) { | |
data['25'] = this._125!.toJson(); | |
} | |
if (this._126 != null) { | |
data['26'] = this._126!.toJson(); | |
} | |
if (this._127 != null) { | |
data['27'] = this._127!.toJson(); | |
} | |
if (this._128 != null) { | |
data['28'] = this._128!.toJson(); | |
} | |
if (this._131 != null) { | |
data['31'] = this._131!.toJson(); | |
} | |
if (this._132 != null) { | |
data['32'] = this._132!.toJson(); | |
} | |
if (this._133 != null) { | |
data['33'] = this._133!.toJson(); | |
} | |
if (this._134 != null) { | |
data['34'] = this._134!.toJson(); | |
} | |
if (this._135 != null) { | |
data['35'] = this._135!.toJson(); | |
} | |
if (this._136 != null) { | |
data['36'] = this._136!.toJson(); | |
} | |
if (this._137 != null) { | |
data['37'] = this._137!.toJson(); | |
} | |
if (this._138 != null) { | |
data['38'] = this._138!.toJson(); | |
} | |
if (this._139 != null) { | |
data['39'] = this._139!.toJson(); | |
} | |
if (this._140 != null) { | |
data['40'] = this._140!.toJson(); | |
} | |
if (this._141 != null) { | |
data['41'] = this._141!.toJson(); | |
} | |
if (this._142 != null) { | |
data['42'] = this._142!.toJson(); | |
} | |
if (this._143 != null) { | |
data['43'] = this._143!.toJson(); | |
} | |
if (this._144 != null) { | |
data['44'] = this._144!.toJson(); | |
} | |
if (this._145 != null) { | |
data['45'] = this._145!.toJson(); | |
} | |
if (this._146 != null) { | |
data['46'] = this._146!.toJson(); | |
} | |
if (this._147 != null) { | |
data['47'] = this._147!.toJson(); | |
} | |
if (this._148 != null) { | |
data['48'] = this._148!.toJson(); | |
} | |
if (this._149 != null) { | |
data['49'] = this._149!.toJson(); | |
} | |
if (this._150 != null) { | |
data['50'] = this._150!.toJson(); | |
} | |
if (this._151 != null) { | |
data['51'] = this._151!.toJson(); | |
} | |
if (this._152 != null) { | |
data['52'] = this._152!.toJson(); | |
} | |
if (this._153 != null) { | |
data['53'] = this._153!.toJson(); | |
} | |
if (this._154 != null) { | |
data['54'] = this._154!.toJson(); | |
} | |
if (this._155 != null) { | |
data['55'] = this._155!.toJson(); | |
} | |
if (this._156 != null) { | |
data['56'] = this._156!.toJson(); | |
} | |
if (this._157 != null) { | |
data['57'] = this._157!.toJson(); | |
} | |
if (this._158 != null) { | |
data['58'] = this._158!.toJson(); | |
} | |
if (this._159 != null) { | |
data['59'] = this._159!.toJson(); | |
} | |
if (this._160 != null) { | |
data['60'] = this._160!.toJson(); | |
} | |
if (this._161 != null) { | |
data['61'] = this._161!.toJson(); | |
} | |
if (this._162 != null) { | |
data['62'] = this._162!.toJson(); | |
} | |
if (this._163 != null) { | |
data['63'] = this._163!.toJson(); | |
} | |
if (this._164 != null) { | |
data['64'] = this._164!.toJson(); | |
} | |
if (this._165 != null) { | |
data['65'] = this._165!.toJson(); | |
} | |
if (this._166 != null) { | |
data['66'] = this._166!.toJson(); | |
} | |
if (this._167 != null) { | |
data['67'] = this._167!.toJson(); | |
} | |
if (this._168 != null) { | |
data['68'] = this._168!.toJson(); | |
} | |
if (this._169 != null) { | |
data['69'] = this._169!.toJson(); | |
} | |
if (this._170 != null) { | |
data['70'] = this._170!.toJson(); | |
} | |
if (this._171 != null) { | |
data['71'] = this._171!.toJson(); | |
} | |
if (this._172 != null) { | |
data['72'] = this._172!.toJson(); | |
} | |
if (this._173 != null) { | |
data['73'] = this._173!.toJson(); | |
} | |
if (this._174 != null) { | |
data['74'] = this._174!.toJson(); | |
} | |
if (this._175 != null) { | |
data['75'] = this._175!.toJson(); | |
} | |
if (this._176 != null) { | |
data['76'] = this._176!.toJson(); | |
} | |
if (this._177 != null) { | |
data['77'] = this._177!.toJson(); | |
} | |
if (this._178 != null) { | |
data['78'] = this._178!.toJson(); | |
} | |
if (this._179 != null) { | |
data['79'] = this._179!.toJson(); | |
} | |
if (this._180 != null) { | |
data['80'] = this._180!.toJson(); | |
} | |
if (this._181 != null) { | |
data['81'] = this._181!.toJson(); | |
} | |
if (this._182 != null) { | |
data['82'] = this._182!.toJson(); | |
} | |
if (this._183 != null) { | |
data['83'] = this._183!.toJson(); | |
} | |
if (this._184 != null) { | |
data['84'] = this._184!.toJson(); | |
} | |
if (this._front != null) { | |
data['front'] = this._front!.toJson(); | |
} | |
if (this._frontAz != null) { | |
data['front_az'] = this._frontAz!.toJson(); | |
} | |
if (this._frontDe != null) { | |
data['front_de'] = this._frontDe!.toJson(); | |
} | |
if (this._frontEn != null) { | |
data['front_en'] = this._frontEn!.toJson(); | |
} | |
if (this._frontFr != null) { | |
data['front_fr'] = this._frontFr!.toJson(); | |
} | |
if (this._frontHr != null) { | |
data['front_hr'] = this._frontHr!.toJson(); | |
} | |
if (this._frontPl != null) { | |
data['front_pl'] = this._frontPl!.toJson(); | |
} | |
if (this._frontPt != null) { | |
data['front_pt'] = this._frontPt!.toJson(); | |
} | |
if (this._frontRo != null) { | |
data['front_ro'] = this._frontRo!.toJson(); | |
} | |
if (this._ingredientsDe != null) { | |
data['ingredients_de'] = this._ingredientsDe!.toJson(); | |
} | |
if (this._ingredientsEn != null) { | |
data['ingredients_en'] = this._ingredientsEn!.toJson(); | |
} | |
if (this._ingredientsFr != null) { | |
data['ingredients_fr'] = this._ingredientsFr!.toJson(); | |
} | |
if (this._ingredientsHr != null) { | |
data['ingredients_hr'] = this._ingredientsHr!.toJson(); | |
} | |
if (this._ingredientsPl != null) { | |
data['ingredients_pl'] = this._ingredientsPl!.toJson(); | |
} | |
if (this._ingredientsPt != null) { | |
data['ingredients_pt'] = this._ingredientsPt!.toJson(); | |
} | |
if (this._ingredientsSl != null) { | |
data['ingredients_sl'] = this._ingredientsSl!.toJson(); | |
} | |
if (this._nutrition != null) { | |
data['nutrition'] = this._nutrition!.toJson(); | |
} | |
if (this._nutritionDe != null) { | |
data['nutrition_de'] = this._nutritionDe!.toJson(); | |
} | |
if (this._nutritionEn != null) { | |
data['nutrition_en'] = this._nutritionEn!.toJson(); | |
} | |
if (this._nutritionFr != null) { | |
data['nutrition_fr'] = this._nutritionFr!.toJson(); | |
} | |
if (this._nutritionHr != null) { | |
data['nutrition_hr'] = this._nutritionHr!.toJson(); | |
} | |
if (this._nutritionPl != null) { | |
data['nutrition_pl'] = this._nutritionPl!.toJson(); | |
} | |
if (this._nutritionPt != null) { | |
data['nutrition_pt'] = this._nutritionPt!.toJson(); | |
} | |
if (this._nutritionRo != null) { | |
data['nutrition_ro'] = this._nutritionRo!.toJson(); | |
} | |
if (this._nutritionSl != null) { | |
data['nutrition_sl'] = this._nutritionSl!.toJson(); | |
} | |
if (this._packagingEn != null) { | |
data['packaging_en'] = this._packagingEn!.toJson(); | |
} | |
if (this._packagingHr != null) { | |
data['packaging_hr'] = this._packagingHr!.toJson(); | |
} | |
if (this._packagingPt != null) { | |
data['packaging_pt'] = this._packagingPt!.toJson(); | |
} | |
return data; | |
} | |
} | |
class 1 { | |
Sizes? _sizes; | |
int? _uploadedT; | |
String? _uploader; | |
1({Sizes? sizes, int? uploadedT, String? uploader}) { | |
if (sizes != null) { | |
this._sizes = sizes; | |
} | |
if (uploadedT != null) { | |
this._uploadedT = uploadedT; | |
} | |
if (uploader != null) { | |
this._uploader = uploader; | |
} | |
} | |
Sizes? get sizes => _sizes; | |
set sizes(Sizes? sizes) => _sizes = sizes; | |
int? get uploadedT => _uploadedT; | |
set uploadedT(int? uploadedT) => _uploadedT = uploadedT; | |
String? get uploader => _uploader; | |
set uploader(String? uploader) => _uploader = uploader; | |
1.fromJson(Map<String, dynamic> json) { | |
_sizes = json['sizes'] != null ? new Sizes.fromJson(json['sizes']) : null; | |
_uploadedT = json['uploaded_t']; | |
_uploader = json['uploader']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
if (this._sizes != null) { | |
data['sizes'] = this._sizes!.toJson(); | |
} | |
data['uploaded_t'] = this._uploadedT; | |
data['uploader'] = this._uploader; | |
return data; | |
} | |
} | |
class Sizes { | |
100? _1100; | |
100? _1400; | |
100? _full; | |
Sizes({100? 1100, 100? 1400, 100? full}) { | |
if (1100 != null) { | |
this._1100 = 1100; | |
} | |
if (1400 != null) { | |
this._1400 = 1400; | |
} | |
if (full != null) { | |
this._full = full; | |
} | |
} | |
100? get 1100 => _1100; | |
set 1100(100? 1100) => _1100 = 1100; | |
100? get 1400 => _1400; | |
set 1400(100? 1400) => _1400 = 1400; | |
100? get full => _full; | |
set full(100? full) => _full = full; | |
Sizes.fromJson(Map<String, dynamic> json) { | |
_1100 = json['100'] != null ? new 100.fromJson(json['100']) : null; | |
_1400 = json['400'] != null ? new 100.fromJson(json['400']) : null; | |
_full = json['full'] != null ? new 100.fromJson(json['full']) : null; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
if (this._1100 != null) { | |
data['100'] = this._1100!.toJson(); | |
} | |
if (this._1400 != null) { | |
data['400'] = this._1400!.toJson(); | |
} | |
if (this._full != null) { | |
data['full'] = this._full!.toJson(); | |
} | |
return data; | |
} | |
} | |
class 100 { | |
int? _h; | |
int? _w; | |
100({int? h, int? w}) { | |
if (h != null) { | |
this._h = h; | |
} | |
if (w != null) { | |
this._w = w; | |
} | |
} | |
int? get h => _h; | |
set h(int? h) => _h = h; | |
int? get w => _w; | |
set w(int? w) => _w = w; | |
100.fromJson(Map<String, dynamic> json) { | |
_h = json['h']; | |
_w = json['w']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['h'] = this._h; | |
data['w'] = this._w; | |
return data; | |
} | |
} | |
class 10 { | |
Sizes? _sizes; | |
String? _uploadedT; | |
String? _uploader; | |
10({Sizes? sizes, String? uploadedT, String? uploader}) { | |
if (sizes != null) { | |
this._sizes = sizes; | |
} | |
if (uploadedT != null) { | |
this._uploadedT = uploadedT; | |
} | |
if (uploader != null) { | |
this._uploader = uploader; | |
} | |
} | |
Sizes? get sizes => _sizes; | |
set sizes(Sizes? sizes) => _sizes = sizes; | |
String? get uploadedT => _uploadedT; | |
set uploadedT(String? uploadedT) => _uploadedT = uploadedT; | |
String? get uploader => _uploader; | |
set uploader(String? uploader) => _uploader = uploader; | |
10.fromJson(Map<String, dynamic> json) { | |
_sizes = json['sizes'] != null ? new Sizes.fromJson(json['sizes']) : null; | |
_uploadedT = json['uploaded_t']; | |
_uploader = json['uploader']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
if (this._sizes != null) { | |
data['sizes'] = this._sizes!.toJson(); | |
} | |
data['uploaded_t'] = this._uploadedT; | |
data['uploader'] = this._uploader; | |
return data; | |
} | |
} | |
class Front { | |
String? _geometry; | |
String? _imgid; | |
Null? _normalize; | |
String? _rev; | |
Sizes? _sizes; | |
Null? _whiteMagic; | |
Front({String? geometry, String? imgid, Null? normalize, String? rev, Sizes? sizes, Null? whiteMagic}) { | |
if (geometry != null) { | |
this._geometry = geometry; | |
} | |
if (imgid != null) { | |
this._imgid = imgid; | |
} | |
if (normalize != null) { | |
this._normalize = normalize; | |
} | |
if (rev != null) { | |
this._rev = rev; | |
} | |
if (sizes != null) { | |
this._sizes = sizes; | |
} | |
if (whiteMagic != null) { | |
this._whiteMagic = whiteMagic; | |
} | |
} | |
String? get geometry => _geometry; | |
set geometry(String? geometry) => _geometry = geometry; | |
String? get imgid => _imgid; | |
set imgid(String? imgid) => _imgid = imgid; | |
Null? get normalize => _normalize; | |
set normalize(Null? normalize) => _normalize = normalize; | |
String? get rev => _rev; | |
set rev(String? rev) => _rev = rev; | |
Sizes? get sizes => _sizes; | |
set sizes(Sizes? sizes) => _sizes = sizes; | |
Null? get whiteMagic => _whiteMagic; | |
set whiteMagic(Null? whiteMagic) => _whiteMagic = whiteMagic; | |
Front.fromJson(Map<String, dynamic> json) { | |
_geometry = json['geometry']; | |
_imgid = json['imgid']; | |
_normalize = json['normalize']; | |
_rev = json['rev']; | |
_sizes = json['sizes'] != null ? new Sizes.fromJson(json['sizes']) : null; | |
_whiteMagic = json['white_magic']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['geometry'] = this._geometry; | |
data['imgid'] = this._imgid; | |
data['normalize'] = this._normalize; | |
data['rev'] = this._rev; | |
if (this._sizes != null) { | |
data['sizes'] = this._sizes!.toJson(); | |
} | |
data['white_magic'] = this._whiteMagic; | |
return data; | |
} | |
} | |
class Sizes { | |
100? _1100; | |
100? _1200; | |
100? _1400; | |
100? _full; | |
Sizes({100? 1100, 100? 1200, 100? 1400, 100? full}) { | |
if (1100 != null) { | |
this._1100 = 1100; | |
} | |
if (1200 != null) { | |
this._1200 = 1200; | |
} | |
if (1400 != null) { | |
this._1400 = 1400; | |
} | |
if (full != null) { | |
this._full = full; | |
} | |
} | |
100? get 1100 => _1100; | |
set 1100(100? 1100) => _1100 = 1100; | |
100? get 1200 => _1200; | |
set 1200(100? 1200) => _1200 = 1200; | |
100? get 1400 => _1400; | |
set 1400(100? 1400) => _1400 = 1400; | |
100? get full => _full; | |
set full(100? full) => _full = full; | |
Sizes.fromJson(Map<String, dynamic> json) { | |
_1100 = json['100'] != null ? new 100.fromJson(json['100']) : null; | |
_1200 = json['200'] != null ? new 100.fromJson(json['200']) : null; | |
_1400 = json['400'] != null ? new 100.fromJson(json['400']) : null; | |
_full = json['full'] != null ? new 100.fromJson(json['full']) : null; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
if (this._1100 != null) { | |
data['100'] = this._1100!.toJson(); | |
} | |
if (this._1200 != null) { | |
data['200'] = this._1200!.toJson(); | |
} | |
if (this._1400 != null) { | |
data['400'] = this._1400!.toJson(); | |
} | |
if (this._full != null) { | |
data['full'] = this._full!.toJson(); | |
} | |
return data; | |
} | |
} | |
class FrontAz { | |
Null? _angle; | |
String? _geometry; | |
String? _imgid; | |
Null? _normalize; | |
String? _rev; | |
Sizes? _sizes; | |
Null? _whiteMagic; | |
Null? _x1; | |
Null? _x2; | |
Null? _y1; | |
Null? _y2; | |
FrontAz({Null? angle, String? geometry, String? imgid, Null? normalize, String? rev, Sizes? sizes, Null? whiteMagic, Null? x1, Null? x2, Null? y1, Null? y2}) { | |
if (angle != null) { | |
this._angle = angle; | |
} | |
if (geometry != null) { | |
this._geometry = geometry; | |
} | |
if (imgid != null) { | |
this._imgid = imgid; | |
} | |
if (normalize != null) { | |
this._normalize = normalize; | |
} | |
if (rev != null) { | |
this._rev = rev; | |
} | |
if (sizes != null) { | |
this._sizes = sizes; | |
} | |
if (whiteMagic != null) { | |
this._whiteMagic = whiteMagic; | |
} | |
if (x1 != null) { | |
this._x1 = x1; | |
} | |
if (x2 != null) { | |
this._x2 = x2; | |
} | |
if (y1 != null) { | |
this._y1 = y1; | |
} | |
if (y2 != null) { | |
this._y2 = y2; | |
} | |
} | |
Null? get angle => _angle; | |
set angle(Null? angle) => _angle = angle; | |
String? get geometry => _geometry; | |
set geometry(String? geometry) => _geometry = geometry; | |
String? get imgid => _imgid; | |
set imgid(String? imgid) => _imgid = imgid; | |
Null? get normalize => _normalize; | |
set normalize(Null? normalize) => _normalize = normalize; | |
String? get rev => _rev; | |
set rev(String? rev) => _rev = rev; | |
Sizes? get sizes => _sizes; | |
set sizes(Sizes? sizes) => _sizes = sizes; | |
Null? get whiteMagic => _whiteMagic; | |
set whiteMagic(Null? whiteMagic) => _whiteMagic = whiteMagic; | |
Null? get x1 => _x1; | |
set x1(Null? x1) => _x1 = x1; | |
Null? get x2 => _x2; | |
set x2(Null? x2) => _x2 = x2; | |
Null? get y1 => _y1; | |
set y1(Null? y1) => _y1 = y1; | |
Null? get y2 => _y2; | |
set y2(Null? y2) => _y2 = y2; | |
FrontAz.fromJson(Map<String, dynamic> json) { | |
_angle = json['angle']; | |
_geometry = json['geometry']; | |
_imgid = json['imgid']; | |
_normalize = json['normalize']; | |
_rev = json['rev']; | |
_sizes = json['sizes'] != null ? new Sizes.fromJson(json['sizes']) : null; | |
_whiteMagic = json['white_magic']; | |
_x1 = json['x1']; | |
_x2 = json['x2']; | |
_y1 = json['y1']; | |
_y2 = json['y2']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['angle'] = this._angle; | |
data['geometry'] = this._geometry; | |
data['imgid'] = this._imgid; | |
data['normalize'] = this._normalize; | |
data['rev'] = this._rev; | |
if (this._sizes != null) { | |
data['sizes'] = this._sizes!.toJson(); | |
} | |
data['white_magic'] = this._whiteMagic; | |
data['x1'] = this._x1; | |
data['x2'] = this._x2; | |
data['y1'] = this._y1; | |
data['y2'] = this._y2; | |
return data; | |
} | |
} | |
class FrontDe { | |
int? _angle; | |
String? _coordinatesImageSize; | |
String? _geometry; | |
String? _imgid; | |
Null? _normalize; | |
String? _rev; | |
Sizes? _sizes; | |
Null? _whiteMagic; | |
String? _x1; | |
String? _x2; | |
String? _y1; | |
String? _y2; | |
FrontDe({int? angle, String? coordinatesImageSize, String? geometry, String? imgid, Null? normalize, String? rev, Sizes? sizes, Null? whiteMagic, String? x1, String? x2, String? y1, String? y2}) { | |
if (angle != null) { | |
this._angle = angle; | |
} | |
if (coordinatesImageSize != null) { | |
this._coordinatesImageSize = coordinatesImageSize; | |
} | |
if (geometry != null) { | |
this._geometry = geometry; | |
} | |
if (imgid != null) { | |
this._imgid = imgid; | |
} | |
if (normalize != null) { | |
this._normalize = normalize; | |
} | |
if (rev != null) { | |
this._rev = rev; | |
} | |
if (sizes != null) { | |
this._sizes = sizes; | |
} | |
if (whiteMagic != null) { | |
this._whiteMagic = whiteMagic; | |
} | |
if (x1 != null) { | |
this._x1 = x1; | |
} | |
if (x2 != null) { | |
this._x2 = x2; | |
} | |
if (y1 != null) { | |
this._y1 = y1; | |
} | |
if (y2 != null) { | |
this._y2 = y2; | |
} | |
} | |
int? get angle => _angle; | |
set angle(int? angle) => _angle = angle; | |
String? get coordinatesImageSize => _coordinatesImageSize; | |
set coordinatesImageSize(String? coordinatesImageSize) => _coordinatesImageSize = coordinatesImageSize; | |
String? get geometry => _geometry; | |
set geometry(String? geometry) => _geometry = geometry; | |
String? get imgid => _imgid; | |
set imgid(String? imgid) => _imgid = imgid; | |
Null? get normalize => _normalize; | |
set normalize(Null? normalize) => _normalize = normalize; | |
String? get rev => _rev; | |
set rev(String? rev) => _rev = rev; | |
Sizes? get sizes => _sizes; | |
set sizes(Sizes? sizes) => _sizes = sizes; | |
Null? get whiteMagic => _whiteMagic; | |
set whiteMagic(Null? whiteMagic) => _whiteMagic = whiteMagic; | |
String? get x1 => _x1; | |
set x1(String? x1) => _x1 = x1; | |
String? get x2 => _x2; | |
set x2(String? x2) => _x2 = x2; | |
String? get y1 => _y1; | |
set y1(String? y1) => _y1 = y1; | |
String? get y2 => _y2; | |
set y2(String? y2) => _y2 = y2; | |
FrontDe.fromJson(Map<String, dynamic> json) { | |
_angle = json['angle']; | |
_coordinatesImageSize = json['coordinates_image_size']; | |
_geometry = json['geometry']; | |
_imgid = json['imgid']; | |
_normalize = json['normalize']; | |
_rev = json['rev']; | |
_sizes = json['sizes'] != null ? new Sizes.fromJson(json['sizes']) : null; | |
_whiteMagic = json['white_magic']; | |
_x1 = json['x1']; | |
_x2 = json['x2']; | |
_y1 = json['y1']; | |
_y2 = json['y2']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['angle'] = this._angle; | |
data['coordinates_image_size'] = this._coordinatesImageSize; | |
data['geometry'] = this._geometry; | |
data['imgid'] = this._imgid; | |
data['normalize'] = this._normalize; | |
data['rev'] = this._rev; | |
if (this._sizes != null) { | |
data['sizes'] = this._sizes!.toJson(); | |
} | |
data['white_magic'] = this._whiteMagic; | |
data['x1'] = this._x1; | |
data['x2'] = this._x2; | |
data['y1'] = this._y1; | |
data['y2'] = this._y2; | |
return data; | |
} | |
} | |
class FrontEn { | |
String? _angle; | |
String? _coordinatesImageSize; | |
String? _geometry; | |
String? _imgid; | |
String? _normalize; | |
String? _rev; | |
Sizes? _sizes; | |
String? _whiteMagic; | |
String? _x1; | |
String? _x2; | |
String? _y1; | |
String? _y2; | |
FrontEn({String? angle, String? coordinatesImageSize, String? geometry, String? imgid, String? normalize, String? rev, Sizes? sizes, String? whiteMagic, String? x1, String? x2, String? y1, String? y2}) { | |
if (angle != null) { | |
this._angle = angle; | |
} | |
if (coordinatesImageSize != null) { | |
this._coordinatesImageSize = coordinatesImageSize; | |
} | |
if (geometry != null) { | |
this._geometry = geometry; | |
} | |
if (imgid != null) { | |
this._imgid = imgid; | |
} | |
if (normalize != null) { | |
this._normalize = normalize; | |
} | |
if (rev != null) { | |
this._rev = rev; | |
} | |
if (sizes != null) { | |
this._sizes = sizes; | |
} | |
if (whiteMagic != null) { | |
this._whiteMagic = whiteMagic; | |
} | |
if (x1 != null) { | |
this._x1 = x1; | |
} | |
if (x2 != null) { | |
this._x2 = x2; | |
} | |
if (y1 != null) { | |
this._y1 = y1; | |
} | |
if (y2 != null) { | |
this._y2 = y2; | |
} | |
} | |
String? get angle => _angle; | |
set angle(String? angle) => _angle = angle; | |
String? get coordinatesImageSize => _coordinatesImageSize; | |
set coordinatesImageSize(String? coordinatesImageSize) => _coordinatesImageSize = coordinatesImageSize; | |
String? get geometry => _geometry; | |
set geometry(String? geometry) => _geometry = geometry; | |
String? get imgid => _imgid; | |
set imgid(String? imgid) => _imgid = imgid; | |
String? get normalize => _normalize; | |
set normalize(String? normalize) => _normalize = normalize; | |
String? get rev => _rev; | |
set rev(String? rev) => _rev = rev; | |
Sizes? get sizes => _sizes; | |
set sizes(Sizes? sizes) => _sizes = sizes; | |
String? get whiteMagic => _whiteMagic; | |
set whiteMagic(String? whiteMagic) => _whiteMagic = whiteMagic; | |
String? get x1 => _x1; | |
set x1(String? x1) => _x1 = x1; | |
String? get x2 => _x2; | |
set x2(String? x2) => _x2 = x2; | |
String? get y1 => _y1; | |
set y1(String? y1) => _y1 = y1; | |
String? get y2 => _y2; | |
set y2(String? y2) => _y2 = y2; | |
FrontEn.fromJson(Map<String, dynamic> json) { | |
_angle = json['angle']; | |
_coordinatesImageSize = json['coordinates_image_size']; | |
_geometry = json['geometry']; | |
_imgid = json['imgid']; | |
_normalize = json['normalize']; | |
_rev = json['rev']; | |
_sizes = json['sizes'] != null ? new Sizes.fromJson(json['sizes']) : null; | |
_whiteMagic = json['white_magic']; | |
_x1 = json['x1']; | |
_x2 = json['x2']; | |
_y1 = json['y1']; | |
_y2 = json['y2']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['angle'] = this._angle; | |
data['coordinates_image_size'] = this._coordinatesImageSize; | |
data['geometry'] = this._geometry; | |
data['imgid'] = this._imgid; | |
data['normalize'] = this._normalize; | |
data['rev'] = this._rev; | |
if (this._sizes != null) { | |
data['sizes'] = this._sizes!.toJson(); | |
} | |
data['white_magic'] = this._whiteMagic; | |
data['x1'] = this._x1; | |
data['x2'] = this._x2; | |
data['y1'] = this._y1; | |
data['y2'] = this._y2; | |
return data; | |
} | |
} | |
class FrontPt { | |
Null? _angle; | |
String? _coordinatesImageSize; | |
String? _geometry; | |
String? _imgid; | |
Null? _normalize; | |
String? _rev; | |
Sizes? _sizes; | |
Null? _whiteMagic; | |
Null? _x1; | |
Null? _x2; | |
Null? _y1; | |
Null? _y2; | |
FrontPt({Null? angle, String? coordinatesImageSize, String? geometry, String? imgid, Null? normalize, String? rev, Sizes? sizes, Null? whiteMagic, Null? x1, Null? x2, Null? y1, Null? y2}) { | |
if (angle != null) { | |
this._angle = angle; | |
} | |
if (coordinatesImageSize != null) { | |
this._coordinatesImageSize = coordinatesImageSize; | |
} | |
if (geometry != null) { | |
this._geometry = geometry; | |
} | |
if (imgid != null) { | |
this._imgid = imgid; | |
} | |
if (normalize != null) { | |
this._normalize = normalize; | |
} | |
if (rev != null) { | |
this._rev = rev; | |
} | |
if (sizes != null) { | |
this._sizes = sizes; | |
} | |
if (whiteMagic != null) { | |
this._whiteMagic = whiteMagic; | |
} | |
if (x1 != null) { | |
this._x1 = x1; | |
} | |
if (x2 != null) { | |
this._x2 = x2; | |
} | |
if (y1 != null) { | |
this._y1 = y1; | |
} | |
if (y2 != null) { | |
this._y2 = y2; | |
} | |
} | |
Null? get angle => _angle; | |
set angle(Null? angle) => _angle = angle; | |
String? get coordinatesImageSize => _coordinatesImageSize; | |
set coordinatesImageSize(String? coordinatesImageSize) => _coordinatesImageSize = coordinatesImageSize; | |
String? get geometry => _geometry; | |
set geometry(String? geometry) => _geometry = geometry; | |
String? get imgid => _imgid; | |
set imgid(String? imgid) => _imgid = imgid; | |
Null? get normalize => _normalize; | |
set normalize(Null? normalize) => _normalize = normalize; | |
String? get rev => _rev; | |
set rev(String? rev) => _rev = rev; | |
Sizes? get sizes => _sizes; | |
set sizes(Sizes? sizes) => _sizes = sizes; | |
Null? get whiteMagic => _whiteMagic; | |
set whiteMagic(Null? whiteMagic) => _whiteMagic = whiteMagic; | |
Null? get x1 => _x1; | |
set x1(Null? x1) => _x1 = x1; | |
Null? get x2 => _x2; | |
set x2(Null? x2) => _x2 = x2; | |
Null? get y1 => _y1; | |
set y1(Null? y1) => _y1 = y1; | |
Null? get y2 => _y2; | |
set y2(Null? y2) => _y2 = y2; | |
FrontPt.fromJson(Map<String, dynamic> json) { | |
_angle = json['angle']; | |
_coordinatesImageSize = json['coordinates_image_size']; | |
_geometry = json['geometry']; | |
_imgid = json['imgid']; | |
_normalize = json['normalize']; | |
_rev = json['rev']; | |
_sizes = json['sizes'] != null ? new Sizes.fromJson(json['sizes']) : null; | |
_whiteMagic = json['white_magic']; | |
_x1 = json['x1']; | |
_x2 = json['x2']; | |
_y1 = json['y1']; | |
_y2 = json['y2']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['angle'] = this._angle; | |
data['coordinates_image_size'] = this._coordinatesImageSize; | |
data['geometry'] = this._geometry; | |
data['imgid'] = this._imgid; | |
data['normalize'] = this._normalize; | |
data['rev'] = this._rev; | |
if (this._sizes != null) { | |
data['sizes'] = this._sizes!.toJson(); | |
} | |
data['white_magic'] = this._whiteMagic; | |
data['x1'] = this._x1; | |
data['x2'] = this._x2; | |
data['y1'] = this._y1; | |
data['y2'] = this._y2; | |
return data; | |
} | |
} | |
class IngredientsFr { | |
Null? _angle; | |
String? _geometry; | |
String? _imgid; | |
String? _normalize; | |
int? _ocr; | |
String? _orientation; | |
String? _rev; | |
Sizes? _sizes; | |
String? _whiteMagic; | |
Null? _x1; | |
Null? _x2; | |
Null? _y1; | |
Null? _y2; | |
IngredientsFr({Null? angle, String? geometry, String? imgid, String? normalize, int? ocr, String? orientation, String? rev, Sizes? sizes, String? whiteMagic, Null? x1, Null? x2, Null? y1, Null? y2}) { | |
if (angle != null) { | |
this._angle = angle; | |
} | |
if (geometry != null) { | |
this._geometry = geometry; | |
} | |
if (imgid != null) { | |
this._imgid = imgid; | |
} | |
if (normalize != null) { | |
this._normalize = normalize; | |
} | |
if (ocr != null) { | |
this._ocr = ocr; | |
} | |
if (orientation != null) { | |
this._orientation = orientation; | |
} | |
if (rev != null) { | |
this._rev = rev; | |
} | |
if (sizes != null) { | |
this._sizes = sizes; | |
} | |
if (whiteMagic != null) { | |
this._whiteMagic = whiteMagic; | |
} | |
if (x1 != null) { | |
this._x1 = x1; | |
} | |
if (x2 != null) { | |
this._x2 = x2; | |
} | |
if (y1 != null) { | |
this._y1 = y1; | |
} | |
if (y2 != null) { | |
this._y2 = y2; | |
} | |
} | |
Null? get angle => _angle; | |
set angle(Null? angle) => _angle = angle; | |
String? get geometry => _geometry; | |
set geometry(String? geometry) => _geometry = geometry; | |
String? get imgid => _imgid; | |
set imgid(String? imgid) => _imgid = imgid; | |
String? get normalize => _normalize; | |
set normalize(String? normalize) => _normalize = normalize; | |
int? get ocr => _ocr; | |
set ocr(int? ocr) => _ocr = ocr; | |
String? get orientation => _orientation; | |
set orientation(String? orientation) => _orientation = orientation; | |
String? get rev => _rev; | |
set rev(String? rev) => _rev = rev; | |
Sizes? get sizes => _sizes; | |
set sizes(Sizes? sizes) => _sizes = sizes; | |
String? get whiteMagic => _whiteMagic; | |
set whiteMagic(String? whiteMagic) => _whiteMagic = whiteMagic; | |
Null? get x1 => _x1; | |
set x1(Null? x1) => _x1 = x1; | |
Null? get x2 => _x2; | |
set x2(Null? x2) => _x2 = x2; | |
Null? get y1 => _y1; | |
set y1(Null? y1) => _y1 = y1; | |
Null? get y2 => _y2; | |
set y2(Null? y2) => _y2 = y2; | |
IngredientsFr.fromJson(Map<String, dynamic> json) { | |
_angle = json['angle']; | |
_geometry = json['geometry']; | |
_imgid = json['imgid']; | |
_normalize = json['normalize']; | |
_ocr = json['ocr']; | |
_orientation = json['orientation']; | |
_rev = json['rev']; | |
_sizes = json['sizes'] != null ? new Sizes.fromJson(json['sizes']) : null; | |
_whiteMagic = json['white_magic']; | |
_x1 = json['x1']; | |
_x2 = json['x2']; | |
_y1 = json['y1']; | |
_y2 = json['y2']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['angle'] = this._angle; | |
data['geometry'] = this._geometry; | |
data['imgid'] = this._imgid; | |
data['normalize'] = this._normalize; | |
data['ocr'] = this._ocr; | |
data['orientation'] = this._orientation; | |
data['rev'] = this._rev; | |
if (this._sizes != null) { | |
data['sizes'] = this._sizes!.toJson(); | |
} | |
data['white_magic'] = this._whiteMagic; | |
data['x1'] = this._x1; | |
data['x2'] = this._x2; | |
data['y1'] = this._y1; | |
data['y2'] = this._y2; | |
return data; | |
} | |
} | |
class IngredientsSl { | |
int? _angle; | |
String? _geometry; | |
String? _imgid; | |
Null? _normalize; | |
String? _rev; | |
Sizes? _sizes; | |
Null? _whiteMagic; | |
String? _x1; | |
String? _x2; | |
String? _y1; | |
String? _y2; | |
IngredientsSl({int? angle, String? geometry, String? imgid, Null? normalize, String? rev, Sizes? sizes, Null? whiteMagic, String? x1, String? x2, String? y1, String? y2}) { | |
if (angle != null) { | |
this._angle = angle; | |
} | |
if (geometry != null) { | |
this._geometry = geometry; | |
} | |
if (imgid != null) { | |
this._imgid = imgid; | |
} | |
if (normalize != null) { | |
this._normalize = normalize; | |
} | |
if (rev != null) { | |
this._rev = rev; | |
} | |
if (sizes != null) { | |
this._sizes = sizes; | |
} | |
if (whiteMagic != null) { | |
this._whiteMagic = whiteMagic; | |
} | |
if (x1 != null) { | |
this._x1 = x1; | |
} | |
if (x2 != null) { | |
this._x2 = x2; | |
} | |
if (y1 != null) { | |
this._y1 = y1; | |
} | |
if (y2 != null) { | |
this._y2 = y2; | |
} | |
} | |
int? get angle => _angle; | |
set angle(int? angle) => _angle = angle; | |
String? get geometry => _geometry; | |
set geometry(String? geometry) => _geometry = geometry; | |
String? get imgid => _imgid; | |
set imgid(String? imgid) => _imgid = imgid; | |
Null? get normalize => _normalize; | |
set normalize(Null? normalize) => _normalize = normalize; | |
String? get rev => _rev; | |
set rev(String? rev) => _rev = rev; | |
Sizes? get sizes => _sizes; | |
set sizes(Sizes? sizes) => _sizes = sizes; | |
Null? get whiteMagic => _whiteMagic; | |
set whiteMagic(Null? whiteMagic) => _whiteMagic = whiteMagic; | |
String? get x1 => _x1; | |
set x1(String? x1) => _x1 = x1; | |
String? get x2 => _x2; | |
set x2(String? x2) => _x2 = x2; | |
String? get y1 => _y1; | |
set y1(String? y1) => _y1 = y1; | |
String? get y2 => _y2; | |
set y2(String? y2) => _y2 = y2; | |
IngredientsSl.fromJson(Map<String, dynamic> json) { | |
_angle = json['angle']; | |
_geometry = json['geometry']; | |
_imgid = json['imgid']; | |
_normalize = json['normalize']; | |
_rev = json['rev']; | |
_sizes = json['sizes'] != null ? new Sizes.fromJson(json['sizes']) : null; | |
_whiteMagic = json['white_magic']; | |
_x1 = json['x1']; | |
_x2 = json['x2']; | |
_y1 = json['y1']; | |
_y2 = json['y2']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['angle'] = this._angle; | |
data['geometry'] = this._geometry; | |
data['imgid'] = this._imgid; | |
data['normalize'] = this._normalize; | |
data['rev'] = this._rev; | |
if (this._sizes != null) { | |
data['sizes'] = this._sizes!.toJson(); | |
} | |
data['white_magic'] = this._whiteMagic; | |
data['x1'] = this._x1; | |
data['x2'] = this._x2; | |
data['y1'] = this._y1; | |
data['y2'] = this._y2; | |
return data; | |
} | |
} | |
class Nutrition { | |
String? _geometry; | |
String? _imgid; | |
Null? _normalize; | |
int? _ocr; | |
String? _orientation; | |
String? _rev; | |
Sizes? _sizes; | |
Null? _whiteMagic; | |
Nutrition({String? geometry, String? imgid, Null? normalize, int? ocr, String? orientation, String? rev, Sizes? sizes, Null? whiteMagic}) { | |
if (geometry != null) { | |
this._geometry = geometry; | |
} | |
if (imgid != null) { | |
this._imgid = imgid; | |
} | |
if (normalize != null) { | |
this._normalize = normalize; | |
} | |
if (ocr != null) { | |
this._ocr = ocr; | |
} | |
if (orientation != null) { | |
this._orientation = orientation; | |
} | |
if (rev != null) { | |
this._rev = rev; | |
} | |
if (sizes != null) { | |
this._sizes = sizes; | |
} | |
if (whiteMagic != null) { | |
this._whiteMagic = whiteMagic; | |
} | |
} | |
String? get geometry => _geometry; | |
set geometry(String? geometry) => _geometry = geometry; | |
String? get imgid => _imgid; | |
set imgid(String? imgid) => _imgid = imgid; | |
Null? get normalize => _normalize; | |
set normalize(Null? normalize) => _normalize = normalize; | |
int? get ocr => _ocr; | |
set ocr(int? ocr) => _ocr = ocr; | |
String? get orientation => _orientation; | |
set orientation(String? orientation) => _orientation = orientation; | |
String? get rev => _rev; | |
set rev(String? rev) => _rev = rev; | |
Sizes? get sizes => _sizes; | |
set sizes(Sizes? sizes) => _sizes = sizes; | |
Null? get whiteMagic => _whiteMagic; | |
set whiteMagic(Null? whiteMagic) => _whiteMagic = whiteMagic; | |
Nutrition.fromJson(Map<String, dynamic> json) { | |
_geometry = json['geometry']; | |
_imgid = json['imgid']; | |
_normalize = json['normalize']; | |
_ocr = json['ocr']; | |
_orientation = json['orientation']; | |
_rev = json['rev']; | |
_sizes = json['sizes'] != null ? new Sizes.fromJson(json['sizes']) : null; | |
_whiteMagic = json['white_magic']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['geometry'] = this._geometry; | |
data['imgid'] = this._imgid; | |
data['normalize'] = this._normalize; | |
data['ocr'] = this._ocr; | |
data['orientation'] = this._orientation; | |
data['rev'] = this._rev; | |
if (this._sizes != null) { | |
data['sizes'] = this._sizes!.toJson(); | |
} | |
data['white_magic'] = this._whiteMagic; | |
return data; | |
} | |
} | |
class Ingredients { | |
String? _id; | |
double? _percentEstimate; | |
double? _percentMax; | |
double? _percentMin; | |
int? _rank; | |
String? _text; | |
String? _vegan; | |
String? _vegetarian; | |
String? _hasSubIngredients; | |
Ingredients({String? id, double? percentEstimate, double? percentMax, double? percentMin, int? rank, String? text, String? vegan, String? vegetarian, String? hasSubIngredients}) { | |
if (id != null) { | |
this._id = id; | |
} | |
if (percentEstimate != null) { | |
this._percentEstimate = percentEstimate; | |
} | |
if (percentMax != null) { | |
this._percentMax = percentMax; | |
} | |
if (percentMin != null) { | |
this._percentMin = percentMin; | |
} | |
if (rank != null) { | |
this._rank = rank; | |
} | |
if (text != null) { | |
this._text = text; | |
} | |
if (vegan != null) { | |
this._vegan = vegan; | |
} | |
if (vegetarian != null) { | |
this._vegetarian = vegetarian; | |
} | |
if (hasSubIngredients != null) { | |
this._hasSubIngredients = hasSubIngredients; | |
} | |
} | |
String? get id => _id; | |
set id(String? id) => _id = id; | |
double? get percentEstimate => _percentEstimate; | |
set percentEstimate(double? percentEstimate) => _percentEstimate = percentEstimate; | |
double? get percentMax => _percentMax; | |
set percentMax(double? percentMax) => _percentMax = percentMax; | |
double? get percentMin => _percentMin; | |
set percentMin(double? percentMin) => _percentMin = percentMin; | |
int? get rank => _rank; | |
set rank(int? rank) => _rank = rank; | |
String? get text => _text; | |
set text(String? text) => _text = text; | |
String? get vegan => _vegan; | |
set vegan(String? vegan) => _vegan = vegan; | |
String? get vegetarian => _vegetarian; | |
set vegetarian(String? vegetarian) => _vegetarian = vegetarian; | |
String? get hasSubIngredients => _hasSubIngredients; | |
set hasSubIngredients(String? hasSubIngredients) => _hasSubIngredients = hasSubIngredients; | |
Ingredients.fromJson(Map<String, dynamic> json) { | |
_id = json['id']; | |
_percentEstimate = json['percent_estimate']; | |
_percentMax = json['percent_max']; | |
_percentMin = json['percent_min']; | |
_rank = json['rank']; | |
_text = json['text']; | |
_vegan = json['vegan']; | |
_vegetarian = json['vegetarian']; | |
_hasSubIngredients = json['has_sub_ingredients']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['id'] = this._id; | |
data['percent_estimate'] = this._percentEstimate; | |
data['percent_max'] = this._percentMax; | |
data['percent_min'] = this._percentMin; | |
data['rank'] = this._rank; | |
data['text'] = this._text; | |
data['vegan'] = this._vegan; | |
data['vegetarian'] = this._vegetarian; | |
data['has_sub_ingredients'] = this._hasSubIngredients; | |
return data; | |
} | |
} | |
class IngredientsAnalysis { | |
List<String>? _enMaybeVegan; | |
List<String>? _enMaybeVegetarian; | |
IngredientsAnalysis({List<String>? enMaybeVegan, List<String>? enMaybeVegetarian}) { | |
if (enMaybeVegan != null) { | |
this._enMaybeVegan = enMaybeVegan; | |
} | |
if (enMaybeVegetarian != null) { | |
this._enMaybeVegetarian = enMaybeVegetarian; | |
} | |
} | |
List<String>? get enMaybeVegan => _enMaybeVegan; | |
set enMaybeVegan(List<String>? enMaybeVegan) => _enMaybeVegan = enMaybeVegan; | |
List<String>? get enMaybeVegetarian => _enMaybeVegetarian; | |
set enMaybeVegetarian(List<String>? enMaybeVegetarian) => _enMaybeVegetarian = enMaybeVegetarian; | |
IngredientsAnalysis.fromJson(Map<String, dynamic> json) { | |
_enMaybeVegan = json['en:maybe-vegan'].cast<String>(); | |
_enMaybeVegetarian = json['en:maybe-vegetarian'].cast<String>(); | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['en:maybe-vegan'] = this._enMaybeVegan; | |
data['en:maybe-vegetarian'] = this._enMaybeVegetarian; | |
return data; | |
} | |
} | |
class Languages { | |
int? _enAzerbaijani; | |
int? _enBulgarian; | |
int? _enCroatian; | |
int? _enEnglish; | |
int? _enFrench; | |
int? _enGerman; | |
int? _enHungarian; | |
int? _enPolish; | |
int? _enPortuguese; | |
int? _enRomanian; | |
int? _enSlovene; | |
Languages({int? enAzerbaijani, int? enBulgarian, int? enCroatian, int? enEnglish, int? enFrench, int? enGerman, int? enHungarian, int? enPolish, int? enPortuguese, int? enRomanian, int? enSlovene}) { | |
if (enAzerbaijani != null) { | |
this._enAzerbaijani = enAzerbaijani; | |
} | |
if (enBulgarian != null) { | |
this._enBulgarian = enBulgarian; | |
} | |
if (enCroatian != null) { | |
this._enCroatian = enCroatian; | |
} | |
if (enEnglish != null) { | |
this._enEnglish = enEnglish; | |
} | |
if (enFrench != null) { | |
this._enFrench = enFrench; | |
} | |
if (enGerman != null) { | |
this._enGerman = enGerman; | |
} | |
if (enHungarian != null) { | |
this._enHungarian = enHungarian; | |
} | |
if (enPolish != null) { | |
this._enPolish = enPolish; | |
} | |
if (enPortuguese != null) { | |
this._enPortuguese = enPortuguese; | |
} | |
if (enRomanian != null) { | |
this._enRomanian = enRomanian; | |
} | |
if (enSlovene != null) { | |
this._enSlovene = enSlovene; | |
} | |
} | |
int? get enAzerbaijani => _enAzerbaijani; | |
set enAzerbaijani(int? enAzerbaijani) => _enAzerbaijani = enAzerbaijani; | |
int? get enBulgarian => _enBulgarian; | |
set enBulgarian(int? enBulgarian) => _enBulgarian = enBulgarian; | |
int? get enCroatian => _enCroatian; | |
set enCroatian(int? enCroatian) => _enCroatian = enCroatian; | |
int? get enEnglish => _enEnglish; | |
set enEnglish(int? enEnglish) => _enEnglish = enEnglish; | |
int? get enFrench => _enFrench; | |
set enFrench(int? enFrench) => _enFrench = enFrench; | |
int? get enGerman => _enGerman; | |
set enGerman(int? enGerman) => _enGerman = enGerman; | |
int? get enHungarian => _enHungarian; | |
set enHungarian(int? enHungarian) => _enHungarian = enHungarian; | |
int? get enPolish => _enPolish; | |
set enPolish(int? enPolish) => _enPolish = enPolish; | |
int? get enPortuguese => _enPortuguese; | |
set enPortuguese(int? enPortuguese) => _enPortuguese = enPortuguese; | |
int? get enRomanian => _enRomanian; | |
set enRomanian(int? enRomanian) => _enRomanian = enRomanian; | |
int? get enSlovene => _enSlovene; | |
set enSlovene(int? enSlovene) => _enSlovene = enSlovene; | |
Languages.fromJson(Map<String, dynamic> json) { | |
_enAzerbaijani = json['en:azerbaijani']; | |
_enBulgarian = json['en:bulgarian']; | |
_enCroatian = json['en:croatian']; | |
_enEnglish = json['en:english']; | |
_enFrench = json['en:french']; | |
_enGerman = json['en:german']; | |
_enHungarian = json['en:hungarian']; | |
_enPolish = json['en:polish']; | |
_enPortuguese = json['en:portuguese']; | |
_enRomanian = json['en:romanian']; | |
_enSlovene = json['en:slovene']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['en:azerbaijani'] = this._enAzerbaijani; | |
data['en:bulgarian'] = this._enBulgarian; | |
data['en:croatian'] = this._enCroatian; | |
data['en:english'] = this._enEnglish; | |
data['en:french'] = this._enFrench; | |
data['en:german'] = this._enGerman; | |
data['en:hungarian'] = this._enHungarian; | |
data['en:polish'] = this._enPolish; | |
data['en:portuguese'] = this._enPortuguese; | |
data['en:romanian'] = this._enRomanian; | |
data['en:slovene'] = this._enSlovene; | |
return data; | |
} | |
} | |
class LanguagesCodes { | |
int? _az; | |
int? _bg; | |
int? _de; | |
int? _en; | |
int? _fr; | |
int? _hr; | |
int? _hu; | |
int? _pl; | |
int? _pt; | |
int? _ro; | |
int? _sl; | |
LanguagesCodes({int? az, int? bg, int? de, int? en, int? fr, int? hr, int? hu, int? pl, int? pt, int? ro, int? sl}) { | |
if (az != null) { | |
this._az = az; | |
} | |
if (bg != null) { | |
this._bg = bg; | |
} | |
if (de != null) { | |
this._de = de; | |
} | |
if (en != null) { | |
this._en = en; | |
} | |
if (fr != null) { | |
this._fr = fr; | |
} | |
if (hr != null) { | |
this._hr = hr; | |
} | |
if (hu != null) { | |
this._hu = hu; | |
} | |
if (pl != null) { | |
this._pl = pl; | |
} | |
if (pt != null) { | |
this._pt = pt; | |
} | |
if (ro != null) { | |
this._ro = ro; | |
} | |
if (sl != null) { | |
this._sl = sl; | |
} | |
} | |
int? get az => _az; | |
set az(int? az) => _az = az; | |
int? get bg => _bg; | |
set bg(int? bg) => _bg = bg; | |
int? get de => _de; | |
set de(int? de) => _de = de; | |
int? get en => _en; | |
set en(int? en) => _en = en; | |
int? get fr => _fr; | |
set fr(int? fr) => _fr = fr; | |
int? get hr => _hr; | |
set hr(int? hr) => _hr = hr; | |
int? get hu => _hu; | |
set hu(int? hu) => _hu = hu; | |
int? get pl => _pl; | |
set pl(int? pl) => _pl = pl; | |
int? get pt => _pt; | |
set pt(int? pt) => _pt = pt; | |
int? get ro => _ro; | |
set ro(int? ro) => _ro = ro; | |
int? get sl => _sl; | |
set sl(int? sl) => _sl = sl; | |
LanguagesCodes.fromJson(Map<String, dynamic> json) { | |
_az = json['az']; | |
_bg = json['bg']; | |
_de = json['de']; | |
_en = json['en']; | |
_fr = json['fr']; | |
_hr = json['hr']; | |
_hu = json['hu']; | |
_pl = json['pl']; | |
_pt = json['pt']; | |
_ro = json['ro']; | |
_sl = json['sl']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['az'] = this._az; | |
data['bg'] = this._bg; | |
data['de'] = this._de; | |
data['en'] = this._en; | |
data['fr'] = this._fr; | |
data['hr'] = this._hr; | |
data['hu'] = this._hu; | |
data['pl'] = this._pl; | |
data['pt'] = this._pt; | |
data['ro'] = this._ro; | |
data['sl'] = this._sl; | |
return data; | |
} | |
} | |
class NovaGroupsMarkers { | |
List<List>? _l3; | |
List<List>? _l4; | |
NovaGroupsMarkers({List<List>? l3, List<List>? l4}) { | |
if (l3 != null) { | |
this._l3 = l3; | |
} | |
if (l4 != null) { | |
this._l4 = l4; | |
} | |
} | |
List<List>? get l3 => _l3; | |
set l3(List<List>? l3) => _l3 = l3; | |
List<List>? get l4 => _l4; | |
set l4(List<List>? l4) => _l4 = l4; | |
NovaGroupsMarkers.fromJson(Map<String, dynamic> json) { | |
if (json['3'] != null) { | |
_l3 = <List>[]; | |
json['3'].forEach((v) { _l3!.add(new List.fromJson(v)); }); | |
} | |
if (json['4'] != null) { | |
_l4 = <List>[]; | |
json['4'].forEach((v) { _l4!.add(new List.fromJson(v)); }); | |
} | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
if (this._l3 != null) { | |
data['3'] = this._l3!.map((v) => v.toJson()).toList(); | |
} | |
if (this._l4 != null) { | |
data['4'] = this._l4!.map((v) => v.toJson()).toList(); | |
} | |
return data; | |
} | |
} | |
class NutrientLevels { | |
String? _fat; | |
String? _salt; | |
String? _saturatedFat; | |
String? _sugars; | |
NutrientLevels({String? fat, String? salt, String? saturatedFat, String? sugars}) { | |
if (fat != null) { | |
this._fat = fat; | |
} | |
if (salt != null) { | |
this._salt = salt; | |
} | |
if (saturatedFat != null) { | |
this._saturatedFat = saturatedFat; | |
} | |
if (sugars != null) { | |
this._sugars = sugars; | |
} | |
} | |
String? get fat => _fat; | |
set fat(String? fat) => _fat = fat; | |
String? get salt => _salt; | |
set salt(String? salt) => _salt = salt; | |
String? get saturatedFat => _saturatedFat; | |
set saturatedFat(String? saturatedFat) => _saturatedFat = saturatedFat; | |
String? get sugars => _sugars; | |
set sugars(String? sugars) => _sugars = sugars; | |
NutrientLevels.fromJson(Map<String, dynamic> json) { | |
_fat = json['fat']; | |
_salt = json['salt']; | |
_saturatedFat = json['saturated-fat']; | |
_sugars = json['sugars']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['fat'] = this._fat; | |
data['salt'] = this._salt; | |
data['saturated-fat'] = this._saturatedFat; | |
data['sugars'] = this._sugars; | |
return data; | |
} | |
} | |
class Nutriments { | |
int? _alcohol; | |
int? _alcohol100g; | |
int? _alcoholServing; | |
String? _alcoholUnit; | |
int? _alcoholValue; | |
double? _alphaLinolenicAcid; | |
double? _alphaLinolenicAcid100g; | |
double? _alphaLinolenicAcidServing; | |
String? _alphaLinolenicAcidUnit; | |
double? _alphaLinolenicAcidValue; | |
double? _arachidicAcid; | |
double? _arachidicAcid100g; | |
double? _arachidicAcidServing; | |
String? _arachidicAcidUnit; | |
double? _arachidicAcidValue; | |
double? _arachidonicAcid; | |
double? _arachidonicAcid100g; | |
double? _arachidonicAcidServing; | |
String? _arachidonicAcidUnit; | |
double? _arachidonicAcidValue; | |
double? _behenicAcid; | |
double? _behenicAcid100g; | |
double? _behenicAcidServing; | |
String? _behenicAcidUnit; | |
double? _behenicAcidValue; | |
double? _capricAcid; | |
double? _capricAcid100g; | |
double? _capricAcidServing; | |
String? _capricAcidUnit; | |
double? _capricAcidValue; | |
double? _carbohydrates; | |
double? _carbohydrates100g; | |
double? _carbohydratesServing; | |
String? _carbohydratesUnit; | |
double? _carbohydratesValue; | |
int? _energy; | |
int? _energyKcal; | |
int? _energyKcal100g; | |
int? _energyKcalServing; | |
String? _energyKcalUnit; | |
int? _energyKcalValue; | |
int? _energyKj; | |
int? _energyKj100g; | |
int? _energyKjServing; | |
String? _energyKjUnit; | |
int? _energyKjValue; | |
int? _energy100g; | |
int? _energyServing; | |
String? _energyUnit; | |
int? _energyValue; | |
int? _fat; | |
int? _fat100g; | |
int? _fatServing; | |
String? _fatUnit; | |
int? _fatValue; | |
int? _fiber; | |
int? _fiber100g; | |
int? _fiberServing; | |
String? _fiberUnit; | |
int? _fiberValue; | |
int? _fruitsVegetablesNutsEstimateFromIngredients100g; | |
int? _fruitsVegetablesNutsEstimateFromIngredientsServing; | |
int? _novaGroup; | |
int? _novaGroup100g; | |
int? _novaGroupServing; | |
int? _nutritionScoreFr; | |
int? _nutritionScoreFr100g; | |
int? _proteins; | |
double? _proteins100g; | |
int? _proteinsServing; | |
String? _proteinsUnit; | |
int? _proteinsValue; | |
int? _salt; | |
int? _salt100g; | |
int? _saltServing; | |
String? _saltUnit; | |
int? _saltValue; | |
int? _saturatedFat; | |
int? _saturatedFat100g; | |
int? _saturatedFatServing; | |
String? _saturatedFatUnit; | |
int? _saturatedFatValue; | |
int? _sodium; | |
int? _sodium100g; | |
int? _sodiumServing; | |
String? _sodiumUnit; | |
int? _sodiumValue; | |
double? _sugars; | |
double? _sugars100g; | |
double? _sugarsServing; | |
String? _sugarsUnit; | |
double? _sugarsValue; | |
Nutriments({int? alcohol, int? alcohol100g, int? alcoholServing, String? alcoholUnit, int? alcoholValue, double? alphaLinolenicAcid, double? alphaLinolenicAcid100g, double? alphaLinolenicAcidServing, String? alphaLinolenicAcidUnit, double? alphaLinolenicAcidValue, double? arachidicAcid, double? arachidicAcid100g, double? arachidicAcidServing, String? arachidicAcidUnit, double? arachidicAcidValue, double? arachidonicAcid, double? arachidonicAcid100g, double? arachidonicAcidServing, String? arachidonicAcidUnit, double? arachidonicAcidValue, double? behenicAcid, double? behenicAcid100g, double? behenicAcidServing, String? behenicAcidUnit, double? behenicAcidValue, double? capricAcid, double? capricAcid100g, double? capricAcidServing, String? capricAcidUnit, double? capricAcidValue, double? carbohydrates, double? carbohydrates100g, double? carbohydratesServing, String? carbohydratesUnit, double? carbohydratesValue, int? energy, int? energyKcal, int? energyKcal100g, int? energyKcalServing, String? energyKcalUnit, int? energyKcalValue, int? energyKj, int? energyKj100g, int? energyKjServing, String? energyKjUnit, int? energyKjValue, int? energy100g, int? energyServing, String? energyUnit, int? energyValue, int? fat, int? fat100g, int? fatServing, String? fatUnit, int? fatValue, int? fiber, int? fiber100g, int? fiberServing, String? fiberUnit, int? fiberValue, int? fruitsVegetablesNutsEstimateFromIngredients100g, int? fruitsVegetablesNutsEstimateFromIngredientsServing, int? novaGroup, int? novaGroup100g, int? novaGroupServing, int? nutritionScoreFr, int? nutritionScoreFr100g, int? proteins, double? proteins100g, int? proteinsServing, String? proteinsUnit, int? proteinsValue, int? salt, int? salt100g, int? saltServing, String? saltUnit, int? saltValue, int? saturatedFat, int? saturatedFat100g, int? saturatedFatServing, String? saturatedFatUnit, int? saturatedFatValue, int? sodium, int? sodium100g, int? sodiumServing, String? sodiumUnit, int? sodiumValue, double? sugars, double? sugars100g, double? sugarsServing, String? sugarsUnit, double? sugarsValue}) { | |
if (alcohol != null) { | |
this._alcohol = alcohol; | |
} | |
if (alcohol100g != null) { | |
this._alcohol100g = alcohol100g; | |
} | |
if (alcoholServing != null) { | |
this._alcoholServing = alcoholServing; | |
} | |
if (alcoholUnit != null) { | |
this._alcoholUnit = alcoholUnit; | |
} | |
if (alcoholValue != null) { | |
this._alcoholValue = alcoholValue; | |
} | |
if (alphaLinolenicAcid != null) { | |
this._alphaLinolenicAcid = alphaLinolenicAcid; | |
} | |
if (alphaLinolenicAcid100g != null) { | |
this._alphaLinolenicAcid100g = alphaLinolenicAcid100g; | |
} | |
if (alphaLinolenicAcidServing != null) { | |
this._alphaLinolenicAcidServing = alphaLinolenicAcidServing; | |
} | |
if (alphaLinolenicAcidUnit != null) { | |
this._alphaLinolenicAcidUnit = alphaLinolenicAcidUnit; | |
} | |
if (alphaLinolenicAcidValue != null) { | |
this._alphaLinolenicAcidValue = alphaLinolenicAcidValue; | |
} | |
if (arachidicAcid != null) { | |
this._arachidicAcid = arachidicAcid; | |
} | |
if (arachidicAcid100g != null) { | |
this._arachidicAcid100g = arachidicAcid100g; | |
} | |
if (arachidicAcidServing != null) { | |
this._arachidicAcidServing = arachidicAcidServing; | |
} | |
if (arachidicAcidUnit != null) { | |
this._arachidicAcidUnit = arachidicAcidUnit; | |
} | |
if (arachidicAcidValue != null) { | |
this._arachidicAcidValue = arachidicAcidValue; | |
} | |
if (arachidonicAcid != null) { | |
this._arachidonicAcid = arachidonicAcid; | |
} | |
if (arachidonicAcid100g != null) { | |
this._arachidonicAcid100g = arachidonicAcid100g; | |
} | |
if (arachidonicAcidServing != null) { | |
this._arachidonicAcidServing = arachidonicAcidServing; | |
} | |
if (arachidonicAcidUnit != null) { | |
this._arachidonicAcidUnit = arachidonicAcidUnit; | |
} | |
if (arachidonicAcidValue != null) { | |
this._arachidonicAcidValue = arachidonicAcidValue; | |
} | |
if (behenicAcid != null) { | |
this._behenicAcid = behenicAcid; | |
} | |
if (behenicAcid100g != null) { | |
this._behenicAcid100g = behenicAcid100g; | |
} | |
if (behenicAcidServing != null) { | |
this._behenicAcidServing = behenicAcidServing; | |
} | |
if (behenicAcidUnit != null) { | |
this._behenicAcidUnit = behenicAcidUnit; | |
} | |
if (behenicAcidValue != null) { | |
this._behenicAcidValue = behenicAcidValue; | |
} | |
if (capricAcid != null) { | |
this._capricAcid = capricAcid; | |
} | |
if (capricAcid100g != null) { | |
this._capricAcid100g = capricAcid100g; | |
} | |
if (capricAcidServing != null) { | |
this._capricAcidServing = capricAcidServing; | |
} | |
if (capricAcidUnit != null) { | |
this._capricAcidUnit = capricAcidUnit; | |
} | |
if (capricAcidValue != null) { | |
this._capricAcidValue = capricAcidValue; | |
} | |
if (carbohydrates != null) { | |
this._carbohydrates = carbohydrates; | |
} | |
if (carbohydrates100g != null) { | |
this._carbohydrates100g = carbohydrates100g; | |
} | |
if (carbohydratesServing != null) { | |
this._carbohydratesServing = carbohydratesServing; | |
} | |
if (carbohydratesUnit != null) { | |
this._carbohydratesUnit = carbohydratesUnit; | |
} | |
if (carbohydratesValue != null) { | |
this._carbohydratesValue = carbohydratesValue; | |
} | |
if (energy != null) { | |
this._energy = energy; | |
} | |
if (energyKcal != null) { | |
this._energyKcal = energyKcal; | |
} | |
if (energyKcal100g != null) { | |
this._energyKcal100g = energyKcal100g; | |
} | |
if (energyKcalServing != null) { | |
this._energyKcalServing = energyKcalServing; | |
} | |
if (energyKcalUnit != null) { | |
this._energyKcalUnit = energyKcalUnit; | |
} | |
if (energyKcalValue != null) { | |
this._energyKcalValue = energyKcalValue; | |
} | |
if (energyKj != null) { | |
this._energyKj = energyKj; | |
} | |
if (energyKj100g != null) { | |
this._energyKj100g = energyKj100g; | |
} | |
if (energyKjServing != null) { | |
this._energyKjServing = energyKjServing; | |
} | |
if (energyKjUnit != null) { | |
this._energyKjUnit = energyKjUnit; | |
} | |
if (energyKjValue != null) { | |
this._energyKjValue = energyKjValue; | |
} | |
if (energy100g != null) { | |
this._energy100g = energy100g; | |
} | |
if (energyServing != null) { | |
this._energyServing = energyServing; | |
} | |
if (energyUnit != null) { | |
this._energyUnit = energyUnit; | |
} | |
if (energyValue != null) { | |
this._energyValue = energyValue; | |
} | |
if (fat != null) { | |
this._fat = fat; | |
} | |
if (fat100g != null) { | |
this._fat100g = fat100g; | |
} | |
if (fatServing != null) { | |
this._fatServing = fatServing; | |
} | |
if (fatUnit != null) { | |
this._fatUnit = fatUnit; | |
} | |
if (fatValue != null) { | |
this._fatValue = fatValue; | |
} | |
if (fiber != null) { | |
this._fiber = fiber; | |
} | |
if (fiber100g != null) { | |
this._fiber100g = fiber100g; | |
} | |
if (fiberServing != null) { | |
this._fiberServing = fiberServing; | |
} | |
if (fiberUnit != null) { | |
this._fiberUnit = fiberUnit; | |
} | |
if (fiberValue != null) { | |
this._fiberValue = fiberValue; | |
} | |
if (fruitsVegetablesNutsEstimateFromIngredients100g != null) { | |
this._fruitsVegetablesNutsEstimateFromIngredients100g = fruitsVegetablesNutsEstimateFromIngredients100g; | |
} | |
if (fruitsVegetablesNutsEstimateFromIngredientsServing != null) { | |
this._fruitsVegetablesNutsEstimateFromIngredientsServing = fruitsVegetablesNutsEstimateFromIngredientsServing; | |
} | |
if (novaGroup != null) { | |
this._novaGroup = novaGroup; | |
} | |
if (novaGroup100g != null) { | |
this._novaGroup100g = novaGroup100g; | |
} | |
if (novaGroupServing != null) { | |
this._novaGroupServing = novaGroupServing; | |
} | |
if (nutritionScoreFr != null) { | |
this._nutritionScoreFr = nutritionScoreFr; | |
} | |
if (nutritionScoreFr100g != null) { | |
this._nutritionScoreFr100g = nutritionScoreFr100g; | |
} | |
if (proteins != null) { | |
this._proteins = proteins; | |
} | |
if (proteins100g != null) { | |
this._proteins100g = proteins100g; | |
} | |
if (proteinsServing != null) { | |
this._proteinsServing = proteinsServing; | |
} | |
if (proteinsUnit != null) { | |
this._proteinsUnit = proteinsUnit; | |
} | |
if (proteinsValue != null) { | |
this._proteinsValue = proteinsValue; | |
} | |
if (salt != null) { | |
this._salt = salt; | |
} | |
if (salt100g != null) { | |
this._salt100g = salt100g; | |
} | |
if (saltServing != null) { | |
this._saltServing = saltServing; | |
} | |
if (saltUnit != null) { | |
this._saltUnit = saltUnit; | |
} | |
if (saltValue != null) { | |
this._saltValue = saltValue; | |
} | |
if (saturatedFat != null) { | |
this._saturatedFat = saturatedFat; | |
} | |
if (saturatedFat100g != null) { | |
this._saturatedFat100g = saturatedFat100g; | |
} | |
if (saturatedFatServing != null) { | |
this._saturatedFatServing = saturatedFatServing; | |
} | |
if (saturatedFatUnit != null) { | |
this._saturatedFatUnit = saturatedFatUnit; | |
} | |
if (saturatedFatValue != null) { | |
this._saturatedFatValue = saturatedFatValue; | |
} | |
if (sodium != null) { | |
this._sodium = sodium; | |
} | |
if (sodium100g != null) { | |
this._sodium100g = sodium100g; | |
} | |
if (sodiumServing != null) { | |
this._sodiumServing = sodiumServing; | |
} | |
if (sodiumUnit != null) { | |
this._sodiumUnit = sodiumUnit; | |
} | |
if (sodiumValue != null) { | |
this._sodiumValue = sodiumValue; | |
} | |
if (sugars != null) { | |
this._sugars = sugars; | |
} | |
if (sugars100g != null) { | |
this._sugars100g = sugars100g; | |
} | |
if (sugarsServing != null) { | |
this._sugarsServing = sugarsServing; | |
} | |
if (sugarsUnit != null) { | |
this._sugarsUnit = sugarsUnit; | |
} | |
if (sugarsValue != null) { | |
this._sugarsValue = sugarsValue; | |
} | |
} | |
int? get alcohol => _alcohol; | |
set alcohol(int? alcohol) => _alcohol = alcohol; | |
int? get alcohol100g => _alcohol100g; | |
set alcohol100g(int? alcohol100g) => _alcohol100g = alcohol100g; | |
int? get alcoholServing => _alcoholServing; | |
set alcoholServing(int? alcoholServing) => _alcoholServing = alcoholServing; | |
String? get alcoholUnit => _alcoholUnit; | |
set alcoholUnit(String? alcoholUnit) => _alcoholUnit = alcoholUnit; | |
int? get alcoholValue => _alcoholValue; | |
set alcoholValue(int? alcoholValue) => _alcoholValue = alcoholValue; | |
double? get alphaLinolenicAcid => _alphaLinolenicAcid; | |
set alphaLinolenicAcid(double? alphaLinolenicAcid) => _alphaLinolenicAcid = alphaLinolenicAcid; | |
double? get alphaLinolenicAcid100g => _alphaLinolenicAcid100g; | |
set alphaLinolenicAcid100g(double? alphaLinolenicAcid100g) => _alphaLinolenicAcid100g = alphaLinolenicAcid100g; | |
double? get alphaLinolenicAcidServing => _alphaLinolenicAcidServing; | |
set alphaLinolenicAcidServing(double? alphaLinolenicAcidServing) => _alphaLinolenicAcidServing = alphaLinolenicAcidServing; | |
String? get alphaLinolenicAcidUnit => _alphaLinolenicAcidUnit; | |
set alphaLinolenicAcidUnit(String? alphaLinolenicAcidUnit) => _alphaLinolenicAcidUnit = alphaLinolenicAcidUnit; | |
double? get alphaLinolenicAcidValue => _alphaLinolenicAcidValue; | |
set alphaLinolenicAcidValue(double? alphaLinolenicAcidValue) => _alphaLinolenicAcidValue = alphaLinolenicAcidValue; | |
double? get arachidicAcid => _arachidicAcid; | |
set arachidicAcid(double? arachidicAcid) => _arachidicAcid = arachidicAcid; | |
double? get arachidicAcid100g => _arachidicAcid100g; | |
set arachidicAcid100g(double? arachidicAcid100g) => _arachidicAcid100g = arachidicAcid100g; | |
double? get arachidicAcidServing => _arachidicAcidServing; | |
set arachidicAcidServing(double? arachidicAcidServing) => _arachidicAcidServing = arachidicAcidServing; | |
String? get arachidicAcidUnit => _arachidicAcidUnit; | |
set arachidicAcidUnit(String? arachidicAcidUnit) => _arachidicAcidUnit = arachidicAcidUnit; | |
double? get arachidicAcidValue => _arachidicAcidValue; | |
set arachidicAcidValue(double? arachidicAcidValue) => _arachidicAcidValue = arachidicAcidValue; | |
double? get arachidonicAcid => _arachidonicAcid; | |
set arachidonicAcid(double? arachidonicAcid) => _arachidonicAcid = arachidonicAcid; | |
double? get arachidonicAcid100g => _arachidonicAcid100g; | |
set arachidonicAcid100g(double? arachidonicAcid100g) => _arachidonicAcid100g = arachidonicAcid100g; | |
double? get arachidonicAcidServing => _arachidonicAcidServing; | |
set arachidonicAcidServing(double? arachidonicAcidServing) => _arachidonicAcidServing = arachidonicAcidServing; | |
String? get arachidonicAcidUnit => _arachidonicAcidUnit; | |
set arachidonicAcidUnit(String? arachidonicAcidUnit) => _arachidonicAcidUnit = arachidonicAcidUnit; | |
double? get arachidonicAcidValue => _arachidonicAcidValue; | |
set arachidonicAcidValue(double? arachidonicAcidValue) => _arachidonicAcidValue = arachidonicAcidValue; | |
double? get behenicAcid => _behenicAcid; | |
set behenicAcid(double? behenicAcid) => _behenicAcid = behenicAcid; | |
double? get behenicAcid100g => _behenicAcid100g; | |
set behenicAcid100g(double? behenicAcid100g) => _behenicAcid100g = behenicAcid100g; | |
double? get behenicAcidServing => _behenicAcidServing; | |
set behenicAcidServing(double? behenicAcidServing) => _behenicAcidServing = behenicAcidServing; | |
String? get behenicAcidUnit => _behenicAcidUnit; | |
set behenicAcidUnit(String? behenicAcidUnit) => _behenicAcidUnit = behenicAcidUnit; | |
double? get behenicAcidValue => _behenicAcidValue; | |
set behenicAcidValue(double? behenicAcidValue) => _behenicAcidValue = behenicAcidValue; | |
double? get capricAcid => _capricAcid; | |
set capricAcid(double? capricAcid) => _capricAcid = capricAcid; | |
double? get capricAcid100g => _capricAcid100g; | |
set capricAcid100g(double? capricAcid100g) => _capricAcid100g = capricAcid100g; | |
double? get capricAcidServing => _capricAcidServing; | |
set capricAcidServing(double? capricAcidServing) => _capricAcidServing = capricAcidServing; | |
String? get capricAcidUnit => _capricAcidUnit; | |
set capricAcidUnit(String? capricAcidUnit) => _capricAcidUnit = capricAcidUnit; | |
double? get capricAcidValue => _capricAcidValue; | |
set capricAcidValue(double? capricAcidValue) => _capricAcidValue = capricAcidValue; | |
double? get carbohydrates => _carbohydrates; | |
set carbohydrates(double? carbohydrates) => _carbohydrates = carbohydrates; | |
double? get carbohydrates100g => _carbohydrates100g; | |
set carbohydrates100g(double? carbohydrates100g) => _carbohydrates100g = carbohydrates100g; | |
double? get carbohydratesServing => _carbohydratesServing; | |
set carbohydratesServing(double? carbohydratesServing) => _carbohydratesServing = carbohydratesServing; | |
String? get carbohydratesUnit => _carbohydratesUnit; | |
set carbohydratesUnit(String? carbohydratesUnit) => _carbohydratesUnit = carbohydratesUnit; | |
double? get carbohydratesValue => _carbohydratesValue; | |
set carbohydratesValue(double? carbohydratesValue) => _carbohydratesValue = carbohydratesValue; | |
int? get energy => _energy; | |
set energy(int? energy) => _energy = energy; | |
int? get energyKcal => _energyKcal; | |
set energyKcal(int? energyKcal) => _energyKcal = energyKcal; | |
int? get energyKcal100g => _energyKcal100g; | |
set energyKcal100g(int? energyKcal100g) => _energyKcal100g = energyKcal100g; | |
int? get energyKcalServing => _energyKcalServing; | |
set energyKcalServing(int? energyKcalServing) => _energyKcalServing = energyKcalServing; | |
String? get energyKcalUnit => _energyKcalUnit; | |
set energyKcalUnit(String? energyKcalUnit) => _energyKcalUnit = energyKcalUnit; | |
int? get energyKcalValue => _energyKcalValue; | |
set energyKcalValue(int? energyKcalValue) => _energyKcalValue = energyKcalValue; | |
int? get energyKj => _energyKj; | |
set energyKj(int? energyKj) => _energyKj = energyKj; | |
int? get energyKj100g => _energyKj100g; | |
set energyKj100g(int? energyKj100g) => _energyKj100g = energyKj100g; | |
int? get energyKjServing => _energyKjServing; | |
set energyKjServing(int? energyKjServing) => _energyKjServing = energyKjServing; | |
String? get energyKjUnit => _energyKjUnit; | |
set energyKjUnit(String? energyKjUnit) => _energyKjUnit = energyKjUnit; | |
int? get energyKjValue => _energyKjValue; | |
set energyKjValue(int? energyKjValue) => _energyKjValue = energyKjValue; | |
int? get energy100g => _energy100g; | |
set energy100g(int? energy100g) => _energy100g = energy100g; | |
int? get energyServing => _energyServing; | |
set energyServing(int? energyServing) => _energyServing = energyServing; | |
String? get energyUnit => _energyUnit; | |
set energyUnit(String? energyUnit) => _energyUnit = energyUnit; | |
int? get energyValue => _energyValue; | |
set energyValue(int? energyValue) => _energyValue = energyValue; | |
int? get fat => _fat; | |
set fat(int? fat) => _fat = fat; | |
int? get fat100g => _fat100g; | |
set fat100g(int? fat100g) => _fat100g = fat100g; | |
int? get fatServing => _fatServing; | |
set fatServing(int? fatServing) => _fatServing = fatServing; | |
String? get fatUnit => _fatUnit; | |
set fatUnit(String? fatUnit) => _fatUnit = fatUnit; | |
int? get fatValue => _fatValue; | |
set fatValue(int? fatValue) => _fatValue = fatValue; | |
int? get fiber => _fiber; | |
set fiber(int? fiber) => _fiber = fiber; | |
int? get fiber100g => _fiber100g; | |
set fiber100g(int? fiber100g) => _fiber100g = fiber100g; | |
int? get fiberServing => _fiberServing; | |
set fiberServing(int? fiberServing) => _fiberServing = fiberServing; | |
String? get fiberUnit => _fiberUnit; | |
set fiberUnit(String? fiberUnit) => _fiberUnit = fiberUnit; | |
int? get fiberValue => _fiberValue; | |
set fiberValue(int? fiberValue) => _fiberValue = fiberValue; | |
int? get fruitsVegetablesNutsEstimateFromIngredients100g => _fruitsVegetablesNutsEstimateFromIngredients100g; | |
set fruitsVegetablesNutsEstimateFromIngredients100g(int? fruitsVegetablesNutsEstimateFromIngredients100g) => _fruitsVegetablesNutsEstimateFromIngredients100g = fruitsVegetablesNutsEstimateFromIngredients100g; | |
int? get fruitsVegetablesNutsEstimateFromIngredientsServing => _fruitsVegetablesNutsEstimateFromIngredientsServing; | |
set fruitsVegetablesNutsEstimateFromIngredientsServing(int? fruitsVegetablesNutsEstimateFromIngredientsServing) => _fruitsVegetablesNutsEstimateFromIngredientsServing = fruitsVegetablesNutsEstimateFromIngredientsServing; | |
int? get novaGroup => _novaGroup; | |
set novaGroup(int? novaGroup) => _novaGroup = novaGroup; | |
int? get novaGroup100g => _novaGroup100g; | |
set novaGroup100g(int? novaGroup100g) => _novaGroup100g = novaGroup100g; | |
int? get novaGroupServing => _novaGroupServing; | |
set novaGroupServing(int? novaGroupServing) => _novaGroupServing = novaGroupServing; | |
int? get nutritionScoreFr => _nutritionScoreFr; | |
set nutritionScoreFr(int? nutritionScoreFr) => _nutritionScoreFr = nutritionScoreFr; | |
int? get nutritionScoreFr100g => _nutritionScoreFr100g; | |
set nutritionScoreFr100g(int? nutritionScoreFr100g) => _nutritionScoreFr100g = nutritionScoreFr100g; | |
int? get proteins => _proteins; | |
set proteins(int? proteins) => _proteins = proteins; | |
double? get proteins100g => _proteins100g; | |
set proteins100g(double? proteins100g) => _proteins100g = proteins100g; | |
int? get proteinsServing => _proteinsServing; | |
set proteinsServing(int? proteinsServing) => _proteinsServing = proteinsServing; | |
String? get proteinsUnit => _proteinsUnit; | |
set proteinsUnit(String? proteinsUnit) => _proteinsUnit = proteinsUnit; | |
int? get proteinsValue => _proteinsValue; | |
set proteinsValue(int? proteinsValue) => _proteinsValue = proteinsValue; | |
int? get salt => _salt; | |
set salt(int? salt) => _salt = salt; | |
int? get salt100g => _salt100g; | |
set salt100g(int? salt100g) => _salt100g = salt100g; | |
int? get saltServing => _saltServing; | |
set saltServing(int? saltServing) => _saltServing = saltServing; | |
String? get saltUnit => _saltUnit; | |
set saltUnit(String? saltUnit) => _saltUnit = saltUnit; | |
int? get saltValue => _saltValue; | |
set saltValue(int? saltValue) => _saltValue = saltValue; | |
int? get saturatedFat => _saturatedFat; | |
set saturatedFat(int? saturatedFat) => _saturatedFat = saturatedFat; | |
int? get saturatedFat100g => _saturatedFat100g; | |
set saturatedFat100g(int? saturatedFat100g) => _saturatedFat100g = saturatedFat100g; | |
int? get saturatedFatServing => _saturatedFatServing; | |
set saturatedFatServing(int? saturatedFatServing) => _saturatedFatServing = saturatedFatServing; | |
String? get saturatedFatUnit => _saturatedFatUnit; | |
set saturatedFatUnit(String? saturatedFatUnit) => _saturatedFatUnit = saturatedFatUnit; | |
int? get saturatedFatValue => _saturatedFatValue; | |
set saturatedFatValue(int? saturatedFatValue) => _saturatedFatValue = saturatedFatValue; | |
int? get sodium => _sodium; | |
set sodium(int? sodium) => _sodium = sodium; | |
int? get sodium100g => _sodium100g; | |
set sodium100g(int? sodium100g) => _sodium100g = sodium100g; | |
int? get sodiumServing => _sodiumServing; | |
set sodiumServing(int? sodiumServing) => _sodiumServing = sodiumServing; | |
String? get sodiumUnit => _sodiumUnit; | |
set sodiumUnit(String? sodiumUnit) => _sodiumUnit = sodiumUnit; | |
int? get sodiumValue => _sodiumValue; | |
set sodiumValue(int? sodiumValue) => _sodiumValue = sodiumValue; | |
double? get sugars => _sugars; | |
set sugars(double? sugars) => _sugars = sugars; | |
double? get sugars100g => _sugars100g; | |
set sugars100g(double? sugars100g) => _sugars100g = sugars100g; | |
double? get sugarsServing => _sugarsServing; | |
set sugarsServing(double? sugarsServing) => _sugarsServing = sugarsServing; | |
String? get sugarsUnit => _sugarsUnit; | |
set sugarsUnit(String? sugarsUnit) => _sugarsUnit = sugarsUnit; | |
double? get sugarsValue => _sugarsValue; | |
set sugarsValue(double? sugarsValue) => _sugarsValue = sugarsValue; | |
Nutriments.fromJson(Map<String, dynamic> json) { | |
_alcohol = json['alcohol']; | |
_alcohol100g = json['alcohol_100g']; | |
_alcoholServing = json['alcohol_serving']; | |
_alcoholUnit = json['alcohol_unit']; | |
_alcoholValue = json['alcohol_value']; | |
_alphaLinolenicAcid = json['alpha-linolenic-acid']; | |
_alphaLinolenicAcid100g = json['alpha-linolenic-acid_100g']; | |
_alphaLinolenicAcidServing = json['alpha-linolenic-acid_serving']; | |
_alphaLinolenicAcidUnit = json['alpha-linolenic-acid_unit']; | |
_alphaLinolenicAcidValue = json['alpha-linolenic-acid_value']; | |
_arachidicAcid = json['arachidic-acid']; | |
_arachidicAcid100g = json['arachidic-acid_100g']; | |
_arachidicAcidServing = json['arachidic-acid_serving']; | |
_arachidicAcidUnit = json['arachidic-acid_unit']; | |
_arachidicAcidValue = json['arachidic-acid_value']; | |
_arachidonicAcid = json['arachidonic-acid']; | |
_arachidonicAcid100g = json['arachidonic-acid_100g']; | |
_arachidonicAcidServing = json['arachidonic-acid_serving']; | |
_arachidonicAcidUnit = json['arachidonic-acid_unit']; | |
_arachidonicAcidValue = json['arachidonic-acid_value']; | |
_behenicAcid = json['behenic-acid']; | |
_behenicAcid100g = json['behenic-acid_100g']; | |
_behenicAcidServing = json['behenic-acid_serving']; | |
_behenicAcidUnit = json['behenic-acid_unit']; | |
_behenicAcidValue = json['behenic-acid_value']; | |
_capricAcid = json['capric-acid']; | |
_capricAcid100g = json['capric-acid_100g']; | |
_capricAcidServing = json['capric-acid_serving']; | |
_capricAcidUnit = json['capric-acid_unit']; | |
_capricAcidValue = json['capric-acid_value']; | |
_carbohydrates = json['carbohydrates']; | |
_carbohydrates100g = json['carbohydrates_100g']; | |
_carbohydratesServing = json['carbohydrates_serving']; | |
_carbohydratesUnit = json['carbohydrates_unit']; | |
_carbohydratesValue = json['carbohydrates_value']; | |
_energy = json['energy']; | |
_energyKcal = json['energy-kcal']; | |
_energyKcal100g = json['energy-kcal_100g']; | |
_energyKcalServing = json['energy-kcal_serving']; | |
_energyKcalUnit = json['energy-kcal_unit']; | |
_energyKcalValue = json['energy-kcal_value']; | |
_energyKj = json['energy-kj']; | |
_energyKj100g = json['energy-kj_100g']; | |
_energyKjServing = json['energy-kj_serving']; | |
_energyKjUnit = json['energy-kj_unit']; | |
_energyKjValue = json['energy-kj_value']; | |
_energy100g = json['energy_100g']; | |
_energyServing = json['energy_serving']; | |
_energyUnit = json['energy_unit']; | |
_energyValue = json['energy_value']; | |
_fat = json['fat']; | |
_fat100g = json['fat_100g']; | |
_fatServing = json['fat_serving']; | |
_fatUnit = json['fat_unit']; | |
_fatValue = json['fat_value']; | |
_fiber = json['fiber']; | |
_fiber100g = json['fiber_100g']; | |
_fiberServing = json['fiber_serving']; | |
_fiberUnit = json['fiber_unit']; | |
_fiberValue = json['fiber_value']; | |
_fruitsVegetablesNutsEstimateFromIngredients100g = json['fruits-vegetables-nuts-estimate-from-ingredients_100g']; | |
_fruitsVegetablesNutsEstimateFromIngredientsServing = json['fruits-vegetables-nuts-estimate-from-ingredients_serving']; | |
_novaGroup = json['nova-group']; | |
_novaGroup100g = json['nova-group_100g']; | |
_novaGroupServing = json['nova-group_serving']; | |
_nutritionScoreFr = json['nutrition-score-fr']; | |
_nutritionScoreFr100g = json['nutrition-score-fr_100g']; | |
_proteins = json['proteins']; | |
_proteins100g = json['proteins_100g']; | |
_proteinsServing = json['proteins_serving']; | |
_proteinsUnit = json['proteins_unit']; | |
_proteinsValue = json['proteins_value']; | |
_salt = json['salt']; | |
_salt100g = json['salt_100g']; | |
_saltServing = json['salt_serving']; | |
_saltUnit = json['salt_unit']; | |
_saltValue = json['salt_value']; | |
_saturatedFat = json['saturated-fat']; | |
_saturatedFat100g = json['saturated-fat_100g']; | |
_saturatedFatServing = json['saturated-fat_serving']; | |
_saturatedFatUnit = json['saturated-fat_unit']; | |
_saturatedFatValue = json['saturated-fat_value']; | |
_sodium = json['sodium']; | |
_sodium100g = json['sodium_100g']; | |
_sodiumServing = json['sodium_serving']; | |
_sodiumUnit = json['sodium_unit']; | |
_sodiumValue = json['sodium_value']; | |
_sugars = json['sugars']; | |
_sugars100g = json['sugars_100g']; | |
_sugarsServing = json['sugars_serving']; | |
_sugarsUnit = json['sugars_unit']; | |
_sugarsValue = json['sugars_value']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['alcohol'] = this._alcohol; | |
data['alcohol_100g'] = this._alcohol100g; | |
data['alcohol_serving'] = this._alcoholServing; | |
data['alcohol_unit'] = this._alcoholUnit; | |
data['alcohol_value'] = this._alcoholValue; | |
data['alpha-linolenic-acid'] = this._alphaLinolenicAcid; | |
data['alpha-linolenic-acid_100g'] = this._alphaLinolenicAcid100g; | |
data['alpha-linolenic-acid_serving'] = this._alphaLinolenicAcidServing; | |
data['alpha-linolenic-acid_unit'] = this._alphaLinolenicAcidUnit; | |
data['alpha-linolenic-acid_value'] = this._alphaLinolenicAcidValue; | |
data['arachidic-acid'] = this._arachidicAcid; | |
data['arachidic-acid_100g'] = this._arachidicAcid100g; | |
data['arachidic-acid_serving'] = this._arachidicAcidServing; | |
data['arachidic-acid_unit'] = this._arachidicAcidUnit; | |
data['arachidic-acid_value'] = this._arachidicAcidValue; | |
data['arachidonic-acid'] = this._arachidonicAcid; | |
data['arachidonic-acid_100g'] = this._arachidonicAcid100g; | |
data['arachidonic-acid_serving'] = this._arachidonicAcidServing; | |
data['arachidonic-acid_unit'] = this._arachidonicAcidUnit; | |
data['arachidonic-acid_value'] = this._arachidonicAcidValue; | |
data['behenic-acid'] = this._behenicAcid; | |
data['behenic-acid_100g'] = this._behenicAcid100g; | |
data['behenic-acid_serving'] = this._behenicAcidServing; | |
data['behenic-acid_unit'] = this._behenicAcidUnit; | |
data['behenic-acid_value'] = this._behenicAcidValue; | |
data['capric-acid'] = this._capricAcid; | |
data['capric-acid_100g'] = this._capricAcid100g; | |
data['capric-acid_serving'] = this._capricAcidServing; | |
data['capric-acid_unit'] = this._capricAcidUnit; | |
data['capric-acid_value'] = this._capricAcidValue; | |
data['carbohydrates'] = this._carbohydrates; | |
data['carbohydrates_100g'] = this._carbohydrates100g; | |
data['carbohydrates_serving'] = this._carbohydratesServing; | |
data['carbohydrates_unit'] = this._carbohydratesUnit; | |
data['carbohydrates_value'] = this._carbohydratesValue; | |
data['energy'] = this._energy; | |
data['energy-kcal'] = this._energyKcal; | |
data['energy-kcal_100g'] = this._energyKcal100g; | |
data['energy-kcal_serving'] = this._energyKcalServing; | |
data['energy-kcal_unit'] = this._energyKcalUnit; | |
data['energy-kcal_value'] = this._energyKcalValue; | |
data['energy-kj'] = this._energyKj; | |
data['energy-kj_100g'] = this._energyKj100g; | |
data['energy-kj_serving'] = this._energyKjServing; | |
data['energy-kj_unit'] = this._energyKjUnit; | |
data['energy-kj_value'] = this._energyKjValue; | |
data['energy_100g'] = this._energy100g; | |
data['energy_serving'] = this._energyServing; | |
data['energy_unit'] = this._energyUnit; | |
data['energy_value'] = this._energyValue; | |
data['fat'] = this._fat; | |
data['fat_100g'] = this._fat100g; | |
data['fat_serving'] = this._fatServing; | |
data['fat_unit'] = this._fatUnit; | |
data['fat_value'] = this._fatValue; | |
data['fiber'] = this._fiber; | |
data['fiber_100g'] = this._fiber100g; | |
data['fiber_serving'] = this._fiberServing; | |
data['fiber_unit'] = this._fiberUnit; | |
data['fiber_value'] = this._fiberValue; | |
data['fruits-vegetables-nuts-estimate-from-ingredients_100g'] = this._fruitsVegetablesNutsEstimateFromIngredients100g; | |
data['fruits-vegetables-nuts-estimate-from-ingredients_serving'] = this._fruitsVegetablesNutsEstimateFromIngredientsServing; | |
data['nova-group'] = this._novaGroup; | |
data['nova-group_100g'] = this._novaGroup100g; | |
data['nova-group_serving'] = this._novaGroupServing; | |
data['nutrition-score-fr'] = this._nutritionScoreFr; | |
data['nutrition-score-fr_100g'] = this._nutritionScoreFr100g; | |
data['proteins'] = this._proteins; | |
data['proteins_100g'] = this._proteins100g; | |
data['proteins_serving'] = this._proteinsServing; | |
data['proteins_unit'] = this._proteinsUnit; | |
data['proteins_value'] = this._proteinsValue; | |
data['salt'] = this._salt; | |
data['salt_100g'] = this._salt100g; | |
data['salt_serving'] = this._saltServing; | |
data['salt_unit'] = this._saltUnit; | |
data['salt_value'] = this._saltValue; | |
data['saturated-fat'] = this._saturatedFat; | |
data['saturated-fat_100g'] = this._saturatedFat100g; | |
data['saturated-fat_serving'] = this._saturatedFatServing; | |
data['saturated-fat_unit'] = this._saturatedFatUnit; | |
data['saturated-fat_value'] = this._saturatedFatValue; | |
data['sodium'] = this._sodium; | |
data['sodium_100g'] = this._sodium100g; | |
data['sodium_serving'] = this._sodiumServing; | |
data['sodium_unit'] = this._sodiumUnit; | |
data['sodium_value'] = this._sodiumValue; | |
data['sugars'] = this._sugars; | |
data['sugars_100g'] = this._sugars100g; | |
data['sugars_serving'] = this._sugarsServing; | |
data['sugars_unit'] = this._sugarsUnit; | |
data['sugars_value'] = this._sugarsValue; | |
return data; | |
} | |
} | |
class NutriscoreData { | |
int? _energy; | |
int? _energyPoints; | |
int? _energyValue; | |
int? _fiber; | |
int? _fiberPoints; | |
int? _fiberValue; | |
int? _fruitsVegetablesNutsColzaWalnutOliveOils; | |
int? _fruitsVegetablesNutsColzaWalnutOliveOilsPoints; | |
int? _fruitsVegetablesNutsColzaWalnutOliveOilsValue; | |
String? _grade; | |
int? _isBeverage; | |
int? _isCheese; | |
int? _isFat; | |
int? _isWater; | |
int? _negativePoints; | |
int? _positivePoints; | |
double? _proteins; | |
int? _proteinsPoints; | |
double? _proteinsValue; | |
int? _saturatedFat; | |
int? _saturatedFatPoints; | |
int? _saturatedFatRatio; | |
int? _saturatedFatRatioPoints; | |
int? _saturatedFatRatioValue; | |
int? _saturatedFatValue; | |
int? _score; | |
int? _sodium; | |
int? _sodiumPoints; | |
int? _sodiumValue; | |
double? _sugars; | |
int? _sugarsPoints; | |
double? _sugarsValue; | |
NutriscoreData({int? energy, int? energyPoints, int? energyValue, int? fiber, int? fiberPoints, int? fiberValue, int? fruitsVegetablesNutsColzaWalnutOliveOils, int? fruitsVegetablesNutsColzaWalnutOliveOilsPoints, int? fruitsVegetablesNutsColzaWalnutOliveOilsValue, String? grade, int? isBeverage, int? isCheese, int? isFat, int? isWater, int? negativePoints, int? positivePoints, double? proteins, int? proteinsPoints, double? proteinsValue, int? saturatedFat, int? saturatedFatPoints, int? saturatedFatRatio, int? saturatedFatRatioPoints, int? saturatedFatRatioValue, int? saturatedFatValue, int? score, int? sodium, int? sodiumPoints, int? sodiumValue, double? sugars, int? sugarsPoints, double? sugarsValue}) { | |
if (energy != null) { | |
this._energy = energy; | |
} | |
if (energyPoints != null) { | |
this._energyPoints = energyPoints; | |
} | |
if (energyValue != null) { | |
this._energyValue = energyValue; | |
} | |
if (fiber != null) { | |
this._fiber = fiber; | |
} | |
if (fiberPoints != null) { | |
this._fiberPoints = fiberPoints; | |
} | |
if (fiberValue != null) { | |
this._fiberValue = fiberValue; | |
} | |
if (fruitsVegetablesNutsColzaWalnutOliveOils != null) { | |
this._fruitsVegetablesNutsColzaWalnutOliveOils = fruitsVegetablesNutsColzaWalnutOliveOils; | |
} | |
if (fruitsVegetablesNutsColzaWalnutOliveOilsPoints != null) { | |
this._fruitsVegetablesNutsColzaWalnutOliveOilsPoints = fruitsVegetablesNutsColzaWalnutOliveOilsPoints; | |
} | |
if (fruitsVegetablesNutsColzaWalnutOliveOilsValue != null) { | |
this._fruitsVegetablesNutsColzaWalnutOliveOilsValue = fruitsVegetablesNutsColzaWalnutOliveOilsValue; | |
} | |
if (grade != null) { | |
this._grade = grade; | |
} | |
if (isBeverage != null) { | |
this._isBeverage = isBeverage; | |
} | |
if (isCheese != null) { | |
this._isCheese = isCheese; | |
} | |
if (isFat != null) { | |
this._isFat = isFat; | |
} | |
if (isWater != null) { | |
this._isWater = isWater; | |
} | |
if (negativePoints != null) { | |
this._negativePoints = negativePoints; | |
} | |
if (positivePoints != null) { | |
this._positivePoints = positivePoints; | |
} | |
if (proteins != null) { | |
this._proteins = proteins; | |
} | |
if (proteinsPoints != null) { | |
this._proteinsPoints = proteinsPoints; | |
} | |
if (proteinsValue != null) { | |
this._proteinsValue = proteinsValue; | |
} | |
if (saturatedFat != null) { | |
this._saturatedFat = saturatedFat; | |
} | |
if (saturatedFatPoints != null) { | |
this._saturatedFatPoints = saturatedFatPoints; | |
} | |
if (saturatedFatRatio != null) { | |
this._saturatedFatRatio = saturatedFatRatio; | |
} | |
if (saturatedFatRatioPoints != null) { | |
this._saturatedFatRatioPoints = saturatedFatRatioPoints; | |
} | |
if (saturatedFatRatioValue != null) { | |
this._saturatedFatRatioValue = saturatedFatRatioValue; | |
} | |
if (saturatedFatValue != null) { | |
this._saturatedFatValue = saturatedFatValue; | |
} | |
if (score != null) { | |
this._score = score; | |
} | |
if (sodium != null) { | |
this._sodium = sodium; | |
} | |
if (sodiumPoints != null) { | |
this._sodiumPoints = sodiumPoints; | |
} | |
if (sodiumValue != null) { | |
this._sodiumValue = sodiumValue; | |
} | |
if (sugars != null) { | |
this._sugars = sugars; | |
} | |
if (sugarsPoints != null) { | |
this._sugarsPoints = sugarsPoints; | |
} | |
if (sugarsValue != null) { | |
this._sugarsValue = sugarsValue; | |
} | |
} | |
int? get energy => _energy; | |
set energy(int? energy) => _energy = energy; | |
int? get energyPoints => _energyPoints; | |
set energyPoints(int? energyPoints) => _energyPoints = energyPoints; | |
int? get energyValue => _energyValue; | |
set energyValue(int? energyValue) => _energyValue = energyValue; | |
int? get fiber => _fiber; | |
set fiber(int? fiber) => _fiber = fiber; | |
int? get fiberPoints => _fiberPoints; | |
set fiberPoints(int? fiberPoints) => _fiberPoints = fiberPoints; | |
int? get fiberValue => _fiberValue; | |
set fiberValue(int? fiberValue) => _fiberValue = fiberValue; | |
int? get fruitsVegetablesNutsColzaWalnutOliveOils => _fruitsVegetablesNutsColzaWalnutOliveOils; | |
set fruitsVegetablesNutsColzaWalnutOliveOils(int? fruitsVegetablesNutsColzaWalnutOliveOils) => _fruitsVegetablesNutsColzaWalnutOliveOils = fruitsVegetablesNutsColzaWalnutOliveOils; | |
int? get fruitsVegetablesNutsColzaWalnutOliveOilsPoints => _fruitsVegetablesNutsColzaWalnutOliveOilsPoints; | |
set fruitsVegetablesNutsColzaWalnutOliveOilsPoints(int? fruitsVegetablesNutsColzaWalnutOliveOilsPoints) => _fruitsVegetablesNutsColzaWalnutOliveOilsPoints = fruitsVegetablesNutsColzaWalnutOliveOilsPoints; | |
int? get fruitsVegetablesNutsColzaWalnutOliveOilsValue => _fruitsVegetablesNutsColzaWalnutOliveOilsValue; | |
set fruitsVegetablesNutsColzaWalnutOliveOilsValue(int? fruitsVegetablesNutsColzaWalnutOliveOilsValue) => _fruitsVegetablesNutsColzaWalnutOliveOilsValue = fruitsVegetablesNutsColzaWalnutOliveOilsValue; | |
String? get grade => _grade; | |
set grade(String? grade) => _grade = grade; | |
int? get isBeverage => _isBeverage; | |
set isBeverage(int? isBeverage) => _isBeverage = isBeverage; | |
int? get isCheese => _isCheese; | |
set isCheese(int? isCheese) => _isCheese = isCheese; | |
int? get isFat => _isFat; | |
set isFat(int? isFat) => _isFat = isFat; | |
int? get isWater => _isWater; | |
set isWater(int? isWater) => _isWater = isWater; | |
int? get negativePoints => _negativePoints; | |
set negativePoints(int? negativePoints) => _negativePoints = negativePoints; | |
int? get positivePoints => _positivePoints; | |
set positivePoints(int? positivePoints) => _positivePoints = positivePoints; | |
double? get proteins => _proteins; | |
set proteins(double? proteins) => _proteins = proteins; | |
int? get proteinsPoints => _proteinsPoints; | |
set proteinsPoints(int? proteinsPoints) => _proteinsPoints = proteinsPoints; | |
double? get proteinsValue => _proteinsValue; | |
set proteinsValue(double? proteinsValue) => _proteinsValue = proteinsValue; | |
int? get saturatedFat => _saturatedFat; | |
set saturatedFat(int? saturatedFat) => _saturatedFat = saturatedFat; | |
int? get saturatedFatPoints => _saturatedFatPoints; | |
set saturatedFatPoints(int? saturatedFatPoints) => _saturatedFatPoints = saturatedFatPoints; | |
int? get saturatedFatRatio => _saturatedFatRatio; | |
set saturatedFatRatio(int? saturatedFatRatio) => _saturatedFatRatio = saturatedFatRatio; | |
int? get saturatedFatRatioPoints => _saturatedFatRatioPoints; | |
set saturatedFatRatioPoints(int? saturatedFatRatioPoints) => _saturatedFatRatioPoints = saturatedFatRatioPoints; | |
int? get saturatedFatRatioValue => _saturatedFatRatioValue; | |
set saturatedFatRatioValue(int? saturatedFatRatioValue) => _saturatedFatRatioValue = saturatedFatRatioValue; | |
int? get saturatedFatValue => _saturatedFatValue; | |
set saturatedFatValue(int? saturatedFatValue) => _saturatedFatValue = saturatedFatValue; | |
int? get score => _score; | |
set score(int? score) => _score = score; | |
int? get sodium => _sodium; | |
set sodium(int? sodium) => _sodium = sodium; | |
int? get sodiumPoints => _sodiumPoints; | |
set sodiumPoints(int? sodiumPoints) => _sodiumPoints = sodiumPoints; | |
int? get sodiumValue => _sodiumValue; | |
set sodiumValue(int? sodiumValue) => _sodiumValue = sodiumValue; | |
double? get sugars => _sugars; | |
set sugars(double? sugars) => _sugars = sugars; | |
int? get sugarsPoints => _sugarsPoints; | |
set sugarsPoints(int? sugarsPoints) => _sugarsPoints = sugarsPoints; | |
double? get sugarsValue => _sugarsValue; | |
set sugarsValue(double? sugarsValue) => _sugarsValue = sugarsValue; | |
NutriscoreData.fromJson(Map<String, dynamic> json) { | |
_energy = json['energy']; | |
_energyPoints = json['energy_points']; | |
_energyValue = json['energy_value']; | |
_fiber = json['fiber']; | |
_fiberPoints = json['fiber_points']; | |
_fiberValue = json['fiber_value']; | |
_fruitsVegetablesNutsColzaWalnutOliveOils = json['fruits_vegetables_nuts_colza_walnut_olive_oils']; | |
_fruitsVegetablesNutsColzaWalnutOliveOilsPoints = json['fruits_vegetables_nuts_colza_walnut_olive_oils_points']; | |
_fruitsVegetablesNutsColzaWalnutOliveOilsValue = json['fruits_vegetables_nuts_colza_walnut_olive_oils_value']; | |
_grade = json['grade']; | |
_isBeverage = json['is_beverage']; | |
_isCheese = json['is_cheese']; | |
_isFat = json['is_fat']; | |
_isWater = json['is_water']; | |
_negativePoints = json['negative_points']; | |
_positivePoints = json['positive_points']; | |
_proteins = json['proteins']; | |
_proteinsPoints = json['proteins_points']; | |
_proteinsValue = json['proteins_value']; | |
_saturatedFat = json['saturated_fat']; | |
_saturatedFatPoints = json['saturated_fat_points']; | |
_saturatedFatRatio = json['saturated_fat_ratio']; | |
_saturatedFatRatioPoints = json['saturated_fat_ratio_points']; | |
_saturatedFatRatioValue = json['saturated_fat_ratio_value']; | |
_saturatedFatValue = json['saturated_fat_value']; | |
_score = json['score']; | |
_sodium = json['sodium']; | |
_sodiumPoints = json['sodium_points']; | |
_sodiumValue = json['sodium_value']; | |
_sugars = json['sugars']; | |
_sugarsPoints = json['sugars_points']; | |
_sugarsValue = json['sugars_value']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['energy'] = this._energy; | |
data['energy_points'] = this._energyPoints; | |
data['energy_value'] = this._energyValue; | |
data['fiber'] = this._fiber; | |
data['fiber_points'] = this._fiberPoints; | |
data['fiber_value'] = this._fiberValue; | |
data['fruits_vegetables_nuts_colza_walnut_olive_oils'] = this._fruitsVegetablesNutsColzaWalnutOliveOils; | |
data['fruits_vegetables_nuts_colza_walnut_olive_oils_points'] = this._fruitsVegetablesNutsColzaWalnutOliveOilsPoints; | |
data['fruits_vegetables_nuts_colza_walnut_olive_oils_value'] = this._fruitsVegetablesNutsColzaWalnutOliveOilsValue; | |
data['grade'] = this._grade; | |
data['is_beverage'] = this._isBeverage; | |
data['is_cheese'] = this._isCheese; | |
data['is_fat'] = this._isFat; | |
data['is_water'] = this._isWater; | |
data['negative_points'] = this._negativePoints; | |
data['positive_points'] = this._positivePoints; | |
data['proteins'] = this._proteins; | |
data['proteins_points'] = this._proteinsPoints; | |
data['proteins_value'] = this._proteinsValue; | |
data['saturated_fat'] = this._saturatedFat; | |
data['saturated_fat_points'] = this._saturatedFatPoints; | |
data['saturated_fat_ratio'] = this._saturatedFatRatio; | |
data['saturated_fat_ratio_points'] = this._saturatedFatRatioPoints; | |
data['saturated_fat_ratio_value'] = this._saturatedFatRatioValue; | |
data['saturated_fat_value'] = this._saturatedFatValue; | |
data['score'] = this._score; | |
data['sodium'] = this._sodium; | |
data['sodium_points'] = this._sodiumPoints; | |
data['sodium_value'] = this._sodiumValue; | |
data['sugars'] = this._sugars; | |
data['sugars_points'] = this._sugarsPoints; | |
data['sugars_value'] = this._sugarsValue; | |
return data; | |
} | |
} | |
class Packagings { | |
String? _material; | |
String? _shape; | |
Packagings({String? material, String? shape}) { | |
if (material != null) { | |
this._material = material; | |
} | |
if (shape != null) { | |
this._shape = shape; | |
} | |
} | |
String? get material => _material; | |
set material(String? material) => _material = material; | |
String? get shape => _shape; | |
set shape(String? shape) => _shape = shape; | |
Packagings.fromJson(Map<String, dynamic> json) { | |
_material = json['material']; | |
_shape = json['shape']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['material'] = this._material; | |
data['shape'] = this._shape; | |
return data; | |
} | |
} | |
class SelectedImages { | |
Front? _front; | |
Front? _ingredients; | |
Front? _nutrition; | |
Front? _packaging; | |
SelectedImages({Front? front, Front? ingredients, Front? nutrition, Front? packaging}) { | |
if (front != null) { | |
this._front = front; | |
} | |
if (ingredients != null) { | |
this._ingredients = ingredients; | |
} | |
if (nutrition != null) { | |
this._nutrition = nutrition; | |
} | |
if (packaging != null) { | |
this._packaging = packaging; | |
} | |
} | |
Front? get front => _front; | |
set front(Front? front) => _front = front; | |
Front? get ingredients => _ingredients; | |
set ingredients(Front? ingredients) => _ingredients = ingredients; | |
Front? get nutrition => _nutrition; | |
set nutrition(Front? nutrition) => _nutrition = nutrition; | |
Front? get packaging => _packaging; | |
set packaging(Front? packaging) => _packaging = packaging; | |
SelectedImages.fromJson(Map<String, dynamic> json) { | |
_front = json['front'] != null ? new Front.fromJson(json['front']) : null; | |
_ingredients = json['ingredients'] != null ? new Front.fromJson(json['ingredients']) : null; | |
_nutrition = json['nutrition'] != null ? new Front.fromJson(json['nutrition']) : null; | |
_packaging = json['packaging'] != null ? new Front.fromJson(json['packaging']) : null; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
if (this._front != null) { | |
data['front'] = this._front!.toJson(); | |
} | |
if (this._ingredients != null) { | |
data['ingredients'] = this._ingredients!.toJson(); | |
} | |
if (this._nutrition != null) { | |
data['nutrition'] = this._nutrition!.toJson(); | |
} | |
if (this._packaging != null) { | |
data['packaging'] = this._packaging!.toJson(); | |
} | |
return data; | |
} | |
} | |
class Front { | |
Display? _display; | |
Display? _small; | |
Display? _thumb; | |
Front({Display? display, Display? small, Display? thumb}) { | |
if (display != null) { | |
this._display = display; | |
} | |
if (small != null) { | |
this._small = small; | |
} | |
if (thumb != null) { | |
this._thumb = thumb; | |
} | |
} | |
Display? get display => _display; | |
set display(Display? display) => _display = display; | |
Display? get small => _small; | |
set small(Display? small) => _small = small; | |
Display? get thumb => _thumb; | |
set thumb(Display? thumb) => _thumb = thumb; | |
Front.fromJson(Map<String, dynamic> json) { | |
_display = json['display'] != null ? new Display.fromJson(json['display']) : null; | |
_small = json['small'] != null ? new Display.fromJson(json['small']) : null; | |
_thumb = json['thumb'] != null ? new Display.fromJson(json['thumb']) : null; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
if (this._display != null) { | |
data['display'] = this._display!.toJson(); | |
} | |
if (this._small != null) { | |
data['small'] = this._small!.toJson(); | |
} | |
if (this._thumb != null) { | |
data['thumb'] = this._thumb!.toJson(); | |
} | |
return data; | |
} | |
} | |
class Display { | |
String? _az; | |
String? _de; | |
String? _en; | |
String? _fr; | |
String? _hr; | |
String? _pl; | |
String? _pt; | |
String? _ro; | |
Display({String? az, String? de, String? en, String? fr, String? hr, String? pl, String? pt, String? ro}) { | |
if (az != null) { | |
this._az = az; | |
} | |
if (de != null) { | |
this._de = de; | |
} | |
if (en != null) { | |
this._en = en; | |
} | |
if (fr != null) { | |
this._fr = fr; | |
} | |
if (hr != null) { | |
this._hr = hr; | |
} | |
if (pl != null) { | |
this._pl = pl; | |
} | |
if (pt != null) { | |
this._pt = pt; | |
} | |
if (ro != null) { | |
this._ro = ro; | |
} | |
} | |
String? get az => _az; | |
set az(String? az) => _az = az; | |
String? get de => _de; | |
set de(String? de) => _de = de; | |
String? get en => _en; | |
set en(String? en) => _en = en; | |
String? get fr => _fr; | |
set fr(String? fr) => _fr = fr; | |
String? get hr => _hr; | |
set hr(String? hr) => _hr = hr; | |
String? get pl => _pl; | |
set pl(String? pl) => _pl = pl; | |
String? get pt => _pt; | |
set pt(String? pt) => _pt = pt; | |
String? get ro => _ro; | |
set ro(String? ro) => _ro = ro; | |
Display.fromJson(Map<String, dynamic> json) { | |
_az = json['az']; | |
_de = json['de']; | |
_en = json['en']; | |
_fr = json['fr']; | |
_hr = json['hr']; | |
_pl = json['pl']; | |
_pt = json['pt']; | |
_ro = json['ro']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['az'] = this._az; | |
data['de'] = this._de; | |
data['en'] = this._en; | |
data['fr'] = this._fr; | |
data['hr'] = this._hr; | |
data['pl'] = this._pl; | |
data['pt'] = this._pt; | |
data['ro'] = this._ro; | |
return data; | |
} | |
} | |
class Display { | |
String? _de; | |
String? _en; | |
String? _fr; | |
String? _hr; | |
String? _pl; | |
String? _pt; | |
String? _sl; | |
Display({String? de, String? en, String? fr, String? hr, String? pl, String? pt, String? sl}) { | |
if (de != null) { | |
this._de = de; | |
} | |
if (en != null) { | |
this._en = en; | |
} | |
if (fr != null) { | |
this._fr = fr; | |
} | |
if (hr != null) { | |
this._hr = hr; | |
} | |
if (pl != null) { | |
this._pl = pl; | |
} | |
if (pt != null) { | |
this._pt = pt; | |
} | |
if (sl != null) { | |
this._sl = sl; | |
} | |
} | |
String? get de => _de; | |
set de(String? de) => _de = de; | |
String? get en => _en; | |
set en(String? en) => _en = en; | |
String? get fr => _fr; | |
set fr(String? fr) => _fr = fr; | |
String? get hr => _hr; | |
set hr(String? hr) => _hr = hr; | |
String? get pl => _pl; | |
set pl(String? pl) => _pl = pl; | |
String? get pt => _pt; | |
set pt(String? pt) => _pt = pt; | |
String? get sl => _sl; | |
set sl(String? sl) => _sl = sl; | |
Display.fromJson(Map<String, dynamic> json) { | |
_de = json['de']; | |
_en = json['en']; | |
_fr = json['fr']; | |
_hr = json['hr']; | |
_pl = json['pl']; | |
_pt = json['pt']; | |
_sl = json['sl']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['de'] = this._de; | |
data['en'] = this._en; | |
data['fr'] = this._fr; | |
data['hr'] = this._hr; | |
data['pl'] = this._pl; | |
data['pt'] = this._pt; | |
data['sl'] = this._sl; | |
return data; | |
} | |
} | |
class Display { | |
String? _de; | |
String? _en; | |
String? _fr; | |
String? _hr; | |
String? _pl; | |
String? _pt; | |
String? _ro; | |
String? _sl; | |
Display({String? de, String? en, String? fr, String? hr, String? pl, String? pt, String? ro, String? sl}) { | |
if (de != null) { | |
this._de = de; | |
} | |
if (en != null) { | |
this._en = en; | |
} | |
if (fr != null) { | |
this._fr = fr; | |
} | |
if (hr != null) { | |
this._hr = hr; | |
} | |
if (pl != null) { | |
this._pl = pl; | |
} | |
if (pt != null) { | |
this._pt = pt; | |
} | |
if (ro != null) { | |
this._ro = ro; | |
} | |
if (sl != null) { | |
this._sl = sl; | |
} | |
} | |
String? get de => _de; | |
set de(String? de) => _de = de; | |
String? get en => _en; | |
set en(String? en) => _en = en; | |
String? get fr => _fr; | |
set fr(String? fr) => _fr = fr; | |
String? get hr => _hr; | |
set hr(String? hr) => _hr = hr; | |
String? get pl => _pl; | |
set pl(String? pl) => _pl = pl; | |
String? get pt => _pt; | |
set pt(String? pt) => _pt = pt; | |
String? get ro => _ro; | |
set ro(String? ro) => _ro = ro; | |
String? get sl => _sl; | |
set sl(String? sl) => _sl = sl; | |
Display.fromJson(Map<String, dynamic> json) { | |
_de = json['de']; | |
_en = json['en']; | |
_fr = json['fr']; | |
_hr = json['hr']; | |
_pl = json['pl']; | |
_pt = json['pt']; | |
_ro = json['ro']; | |
_sl = json['sl']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['de'] = this._de; | |
data['en'] = this._en; | |
data['fr'] = this._fr; | |
data['hr'] = this._hr; | |
data['pl'] = this._pl; | |
data['pt'] = this._pt; | |
data['ro'] = this._ro; | |
data['sl'] = this._sl; | |
return data; | |
} | |
} | |
class Display { | |
String? _en; | |
String? _hr; | |
String? _pt; | |
Display({String? en, String? hr, String? pt}) { | |
if (en != null) { | |
this._en = en; | |
} | |
if (hr != null) { | |
this._hr = hr; | |
} | |
if (pt != null) { | |
this._pt = pt; | |
} | |
} | |
String? get en => _en; | |
set en(String? en) => _en = en; | |
String? get hr => _hr; | |
set hr(String? hr) => _hr = hr; | |
String? get pt => _pt; | |
set pt(String? pt) => _pt = pt; | |
Display.fromJson(Map<String, dynamic> json) { | |
_en = json['en']; | |
_hr = json['hr']; | |
_pt = json['pt']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['en'] = this._en; | |
data['hr'] = this._hr; | |
data['pt'] = this._pt; | |
return data; | |
} | |
} | |
class Sources { | |
List<String>? _fields; | |
String? _id; | |
List<String>? _images; | |
int? _importT; | |
String? _url; | |
String? _manufacturer; | |
String? _name; | |
String? _sourceLicence; | |
String? _sourceLicenceUrl; | |
Sources({List<String>? fields, String? id, List<String>? images, int? importT, String? url, String? manufacturer, String? name, String? sourceLicence, String? sourceLicenceUrl}) { | |
if (fields != null) { | |
this._fields = fields; | |
} | |
if (id != null) { | |
this._id = id; | |
} | |
if (images != null) { | |
this._images = images; | |
} | |
if (importT != null) { | |
this._importT = importT; | |
} | |
if (url != null) { | |
this._url = url; | |
} | |
if (manufacturer != null) { | |
this._manufacturer = manufacturer; | |
} | |
if (name != null) { | |
this._name = name; | |
} | |
if (sourceLicence != null) { | |
this._sourceLicence = sourceLicence; | |
} | |
if (sourceLicenceUrl != null) { | |
this._sourceLicenceUrl = sourceLicenceUrl; | |
} | |
} | |
List<String>? get fields => _fields; | |
set fields(List<String>? fields) => _fields = fields; | |
String? get id => _id; | |
set id(String? id) => _id = id; | |
List<String>? get images => _images; | |
set images(List<String>? images) => _images = images; | |
int? get importT => _importT; | |
set importT(int? importT) => _importT = importT; | |
String? get url => _url; | |
set url(String? url) => _url = url; | |
String? get manufacturer => _manufacturer; | |
set manufacturer(String? manufacturer) => _manufacturer = manufacturer; | |
String? get name => _name; | |
set name(String? name) => _name = name; | |
String? get sourceLicence => _sourceLicence; | |
set sourceLicence(String? sourceLicence) => _sourceLicence = sourceLicence; | |
String? get sourceLicenceUrl => _sourceLicenceUrl; | |
set sourceLicenceUrl(String? sourceLicenceUrl) => _sourceLicenceUrl = sourceLicenceUrl; | |
Sources.fromJson(Map<String, dynamic> json) { | |
_fields = json['fields'].cast<String>(); | |
_id = json['id']; | |
_images = json['images'].cast<String>(); | |
_importT = json['import_t']; | |
_url = json['url']; | |
_manufacturer = json['manufacturer']; | |
_name = json['name']; | |
_sourceLicence = json['source_licence']; | |
_sourceLicenceUrl = json['source_licence_url']; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
data['fields'] = this._fields; | |
data['id'] = this._id; | |
data['images'] = this._images; | |
data['import_t'] = this._importT; | |
data['url'] = this._url; | |
data['manufacturer'] = this._manufacturer; | |
data['name'] = this._name; | |
data['source_licence'] = this._sourceLicence; | |
data['source_licence_url'] = this._sourceLicenceUrl; | |
return data; | |
} | |
} | |
class Images { | |
1? _11; | |
1? _12; | |
Adjustments? _a3; | |
Adjustments? _a4; | |
1? _15; | |
1? _16; | |
1? _17; | |
1? _18; | |
10? _110; | |
10? _111; | |
10? _112; | |
10? _114; | |
1? _115; | |
1? _116; | |
1? _117; | |
1? _118; | |
1? _119; | |
10? _120; | |
10? _121; | |
10? _122; | |
1? _123; | |
1? _124; | |
1? _125; | |
1? _126; | |
1? _127; | |
1? _128; | |
1? _131; | |
1? _132; | |
1? _133; | |
1? _134; | |
1? _135; | |
1? _136; | |
1? _137; | |
1? _138; | |
1? _139; | |
1? _140; | |
1? _141; | |
1? _142; | |
1? _143; | |
1? _144; | |
1? _145; | |
1? _146; | |
1? _147; | |
1? _148; | |
1? _149; | |
1? _150; | |
1? _151; | |
1? _152; | |
1? _153; | |
1? _154; | |
1? _155; | |
1? _156; | |
1? _157; | |
1? _158; | |
1? _159; | |
1? _160; | |
1? _161; | |
1? _162; | |
1? _163; | |
1? _164; | |
1? _165; | |
1? _166; | |
1? _167; | |
1? _168; | |
1? _169; | |
1? _170; | |
1? _171; | |
1? _172; | |
1? _173; | |
1? _174; | |
1? _175; | |
1? _176; | |
1? _177; | |
1? _178; | |
1? _179; | |
1? _180; | |
1? _181; | |
1? _182; | |
1? _183; | |
1? _184; | |
Front? _front; | |
FrontAz? _frontAz; | |
FrontDe? _frontDe; | |
FrontEn? _frontEn; | |
FrontDe? _frontFr; | |
FrontEn? _frontHr; | |
FrontDe? _frontPl; | |
FrontPt? _frontPt; | |
FrontDe? _frontRo; | |
FrontDe? _ingredientsDe; | |
FrontDe? _ingredientsEn; | |
IngredientsFr? _ingredientsFr; | |
FrontEn? _ingredientsHr; | |
FrontAz? _ingredientsPl; | |
FrontPt? _ingredientsPt; | |
IngredientsSl? _ingredientsSl; | |
Front? _nutrition; | |
FrontDe? _nutritionDe; | |
FrontDe? _nutritionEn; | |
Nutrition? _nutritionFr; | |
FrontEn? _nutritionHr; | |
FrontAz? _nutritionPl; | |
FrontPt? _nutritionPt; | |
FrontDe? _nutritionRo; | |
IngredientsSl? _nutritionSl; | |
FrontDe? _packagingEn; | |
FrontEn? _packagingHr; | |
FrontPt? _packagingPt; | |
Images({1? 11, 1? 12, Adjustments? a3, Adjustments? a4, 1? 15, 1? 16, 1? 17, 1? 18, 10? 110, 10? 111, 10? 112, 10? 114, 1? 115, 1? 116, 1? 117, 1? 118, 1? 119, 10? 120, 10? 121, 10? 122, 1? 123, 1? 124, 1? 125, 1? 126, 1? 127, 1? 128, 1? 131, 1? 132, 1? 133, 1? 134, 1? 135, 1? 136, 1? 137, 1? 138, 1? 139, 1? 140, 1? 141, 1? 142, 1? 143, 1? 144, 1? 145, 1? 146, 1? 147, 1? 148, 1? 149, 1? 150, 1? 151, 1? 152, 1? 153, 1? 154, 1? 155, 1? 156, 1? 157, 1? 158, 1? 159, 1? 160, 1? 161, 1? 162, 1? 163, 1? 164, 1? 165, 1? 166, 1? 167, 1? 168, 1? 169, 1? 170, 1? 171, 1? 172, 1? 173, 1? 174, 1? 175, 1? 176, 1? 177, 1? 178, 1? 179, 1? 180, 1? 181, 1? 182, 1? 183, 1? 184, Front? front, FrontAz? frontAz, FrontDe? frontDe, FrontEn? frontEn, FrontDe? frontFr, FrontEn? frontHr, FrontDe? frontPl, FrontPt? frontPt, FrontDe? frontRo, FrontDe? ingredientsDe, FrontDe? ingredientsEn, IngredientsFr? ingredientsFr, FrontEn? ingredientsHr, FrontAz? ingredientsPl, FrontPt? ingredientsPt, IngredientsSl? ingredientsSl, Front? nutrition, FrontDe? nutritionDe, FrontDe? nutritionEn, Nutrition? nutritionFr, FrontEn? nutritionHr, FrontAz? nutritionPl, FrontPt? nutritionPt, FrontDe? nutritionRo, IngredientsSl? nutritionSl, FrontDe? packagingEn, FrontEn? packagingHr, FrontPt? packagingPt}) { | |
if (11 != null) { | |
this._11 = 11; | |
} | |
if (12 != null) { | |
this._12 = 12; | |
} | |
if (a3 != null) { | |
this._a3 = a3; | |
} | |
if (a4 != null) { | |
this._a4 = a4; | |
} | |
if (15 != null) { | |
this._15 = 15; | |
} | |
if (16 != null) { | |
this._16 = 16; | |
} | |
if (17 != null) { | |
this._17 = 17; | |
} | |
if (18 != null) { | |
this._18 = 18; | |
} | |
if (110 != null) { | |
this._110 = 110; | |
} | |
if (111 != null) { | |
this._111 = 111; | |
} | |
if (112 != null) { | |
this._112 = 112; | |
} | |
if (114 != null) { | |
this._114 = 114; | |
} | |
if (115 != null) { | |
this._115 = 115; | |
} | |
if (116 != null) { | |
this._116 = 116; | |
} | |
if (117 != null) { | |
this._117 = 117; | |
} | |
if (118 != null) { | |
this._118 = 118; | |
} | |
if (119 != null) { | |
this._119 = 119; | |
} | |
if (120 != null) { | |
this._120 = 120; | |
} | |
if (121 != null) { | |
this._121 = 121; | |
} | |
if (122 != null) { | |
this._122 = 122; | |
} | |
if (123 != null) { | |
this._123 = 123; | |
} | |
if (124 != null) { | |
this._124 = 124; | |
} | |
if (125 != null) { | |
this._125 = 125; | |
} | |
if (126 != null) { | |
this._126 = 126; | |
} | |
if (127 != null) { | |
this._127 = 127; | |
} | |
if (128 != null) { | |
this._128 = 128; | |
} | |
if (131 != null) { | |
this._131 = 131; | |
} | |
if (132 != null) { | |
this._132 = 132; | |
} | |
if (133 != null) { | |
this._133 = 133; | |
} | |
if (134 != null) { | |
this._134 = 134; | |
} | |
if (135 != null) { | |
this._135 = 135; | |
} | |
if (136 != null) { | |
this._136 = 136; | |
} | |
if (137 != null) { | |
this._137 = 137; | |
} | |
if (138 != null) { | |
this._138 = 138; | |
} | |
if (139 != null) { | |
this._139 = 139; | |
} | |
if (140 != null) { | |
this._140 = 140; | |
} | |
if (141 != null) { | |
this._141 = 141; | |
} | |
if (142 != null) { | |
this._142 = 142; | |
} | |
if (143 != null) { | |
this._143 = 143; | |
} | |
if (144 != null) { | |
this._144 = 144; | |
} | |
if (145 != null) { | |
this._145 = 145; | |
} | |
if (146 != null) { | |
this._146 = 146; | |
} | |
if (147 != null) { | |
this._147 = 147; | |
} | |
if (148 != null) { | |
this._148 = 148; | |
} | |
if (149 != null) { | |
this._149 = 149; | |
} | |
if (150 != null) { | |
this._150 = 150; | |
} | |
if (151 != null) { | |
this._151 = 151; | |
} | |
if (152 != null) { | |
this._152 = 152; | |
} | |
if (153 != null) { | |
this._153 = 153; | |
} | |
if (154 != null) { | |
this._154 = 154; | |
} | |
if (155 != null) { | |
this._155 = 155; | |
} | |
if (156 != null) { | |
this._156 = 156; | |
} | |
if (157 != null) { | |
this._157 = 157; | |
} | |
if (158 != null) { | |
this._158 = 158; | |
} | |
if (159 != null) { | |
this._159 = 159; | |
} | |
if (160 != null) { | |
this._160 = 160; | |
} | |
if (161 != null) { | |
this._161 = 161; | |
} | |
if (162 != null) { | |
this._162 = 162; | |
} | |
if (163 != null) { | |
this._163 = 163; | |
} | |
if (164 != null) { | |
this._164 = 164; | |
} | |
if (165 != null) { | |
this._165 = 165; | |
} | |
if (166 != null) { | |
this._166 = 166; | |
} | |
if (167 != null) { | |
this._167 = 167; | |
} | |
if (168 != null) { | |
this._168 = 168; | |
} | |
if (169 != null) { | |
this._169 = 169; | |
} | |
if (170 != null) { | |
this._170 = 170; | |
} | |
if (171 != null) { | |
this._171 = 171; | |
} | |
if (172 != null) { | |
this._172 = 172; | |
} | |
if (173 != null) { | |
this._173 = 173; | |
} | |
if (174 != null) { | |
this._174 = 174; | |
} | |
if (175 != null) { | |
this._175 = 175; | |
} | |
if (176 != null) { | |
this._176 = 176; | |
} | |
if (177 != null) { | |
this._177 = 177; | |
} | |
if (178 != null) { | |
this._178 = 178; | |
} | |
if (179 != null) { | |
this._179 = 179; | |
} | |
if (180 != null) { | |
this._180 = 180; | |
} | |
if (181 != null) { | |
this._181 = 181; | |
} | |
if (182 != null) { | |
this._182 = 182; | |
} | |
if (183 != null) { | |
this._183 = 183; | |
} | |
if (184 != null) { | |
this._184 = 184; | |
} | |
if (front != null) { | |
this._front = front; | |
} | |
if (frontAz != null) { | |
this._frontAz = frontAz; | |
} | |
if (frontDe != null) { | |
this._frontDe = frontDe; | |
} | |
if (frontEn != null) { | |
this._frontEn = frontEn; | |
} | |
if (frontFr != null) { | |
this._frontFr = frontFr; | |
} | |
if (frontHr != null) { | |
this._frontHr = frontHr; | |
} | |
if (frontPl != null) { | |
this._frontPl = frontPl; | |
} | |
if (frontPt != null) { | |
this._frontPt = frontPt; | |
} | |
if (frontRo != null) { | |
this._frontRo = frontRo; | |
} | |
if (ingredientsDe != null) { | |
this._ingredientsDe = ingredientsDe; | |
} | |
if (ingredientsEn != null) { | |
this._ingredientsEn = ingredientsEn; | |
} | |
if (ingredientsFr != null) { | |
this._ingredientsFr = ingredientsFr; | |
} | |
if (ingredientsHr != null) { | |
this._ingredientsHr = ingredientsHr; | |
} | |
if (ingredientsPl != null) { | |
this._ingredientsPl = ingredientsPl; | |
} | |
if (ingredientsPt != null) { | |
this._ingredientsPt = ingredientsPt; | |
} | |
if (ingredientsSl != null) { | |
this._ingredientsSl = ingredientsSl; | |
} | |
if (nutrition != null) { | |
this._nutrition = nutrition; | |
} | |
if (nutritionDe != null) { | |
this._nutritionDe = nutritionDe; | |
} | |
if (nutritionEn != null) { | |
this._nutritionEn = nutritionEn; | |
} | |
if (nutritionFr != null) { | |
this._nutritionFr = nutritionFr; | |
} | |
if (nutritionHr != null) { | |
this._nutritionHr = nutritionHr; | |
} | |
if (nutritionPl != null) { | |
this._nutritionPl = nutritionPl; | |
} | |
if (nutritionPt != null) { | |
this._nutritionPt = nutritionPt; | |
} | |
if (nutritionRo != null) { | |
this._nutritionRo = nutritionRo; | |
} | |
if (nutritionSl != null) { | |
this._nutritionSl = nutritionSl; | |
} | |
if (packagingEn != null) { | |
this._packagingEn = packagingEn; | |
} | |
if (packagingHr != null) { | |
this._packagingHr = packagingHr; | |
} | |
if (packagingPt != null) { | |
this._packagingPt = packagingPt; | |
} | |
} | |
1? get 11 => _11; | |
set 11(1? 11) => _11 = 11; | |
1? get 12 => _12; | |
set 12(1? 12) => _12 = 12; | |
Adjustments? get a3 => _a3; | |
set a3(Adjustments? a3) => _a3 = a3; | |
Adjustments? get a4 => _a4; | |
set a4(Adjustments? a4) => _a4 = a4; | |
1? get 15 => _15; | |
set 15(1? 15) => _15 = 15; | |
1? get 16 => _16; | |
set 16(1? 16) => _16 = 16; | |
1? get 17 => _17; | |
set 17(1? 17) => _17 = 17; | |
1? get 18 => _18; | |
set 18(1? 18) => _18 = 18; | |
10? get 110 => _110; | |
set 110(10? 110) => _110 = 110; | |
10? get 111 => _111; | |
set 111(10? 111) => _111 = 111; | |
10? get 112 => _112; | |
set 112(10? 112) => _112 = 112; | |
10? get 114 => _114; | |
set 114(10? 114) => _114 = 114; | |
1? get 115 => _115; | |
set 115(1? 115) => _115 = 115; | |
1? get 116 => _116; | |
set 116(1? 116) => _116 = 116; | |
1? get 117 => _117; | |
set 117(1? 117) => _117 = 117; | |
1? get 118 => _118; | |
set 118(1? 118) => _118 = 118; | |
1? get 119 => _119; | |
set 119(1? 119) => _119 = 119; | |
10? get 120 => _120; | |
set 120(10? 120) => _120 = 120; | |
10? get 121 => _121; | |
set 121(10? 121) => _121 = 121; | |
10? get 122 => _122; | |
set 122(10? 122) => _122 = 122; | |
1? get 123 => _123; | |
set 123(1? 123) => _123 = 123; | |
1? get 124 => _124; | |
set 124(1? 124) => _124 = 124; | |
1? get 125 => _125; | |
set 125(1? 125) => _125 = 125; | |
1? get 126 => _126; | |
set 126(1? 126) => _126 = 126; | |
1? get 127 => _127; | |
set 127(1? 127) => _127 = 127; | |
1? get 128 => _128; | |
set 128(1? 128) => _128 = 128; | |
1? get 131 => _131; | |
set 131(1? 131) => _131 = 131; | |
1? get 132 => _132; | |
set 132(1? 132) => _132 = 132; | |
1? get 133 => _133; | |
set 133(1? 133) => _133 = 133; | |
1? get 134 => _134; | |
set 134(1? 134) => _134 = 134; | |
1? get 135 => _135; | |
set 135(1? 135) => _135 = 135; | |
1? get 136 => _136; | |
set 136(1? 136) => _136 = 136; | |
1? get 137 => _137; | |
set 137(1? 137) => _137 = 137; | |
1? get 138 => _138; | |
set 138(1? 138) => _138 = 138; | |
1? get 139 => _139; | |
set 139(1? 139) => _139 = 139; | |
1? get 140 => _140; | |
set 140(1? 140) => _140 = 140; | |
1? get 141 => _141; | |
set 141(1? 141) => _141 = 141; | |
1? get 142 => _142; | |
set 142(1? 142) => _142 = 142; | |
1? get 143 => _143; | |
set 143(1? 143) => _143 = 143; | |
1? get 144 => _144; | |
set 144(1? 144) => _144 = 144; | |
1? get 145 => _145; | |
set 145(1? 145) => _145 = 145; | |
1? get 146 => _146; | |
set 146(1? 146) => _146 = 146; | |
1? get 147 => _147; | |
set 147(1? 147) => _147 = 147; | |
1? get 148 => _148; | |
set 148(1? 148) => _148 = 148; | |
1? get 149 => _149; | |
set 149(1? 149) => _149 = 149; | |
1? get 150 => _150; | |
set 150(1? 150) => _150 = 150; | |
1? get 151 => _151; | |
set 151(1? 151) => _151 = 151; | |
1? get 152 => _152; | |
set 152(1? 152) => _152 = 152; | |
1? get 153 => _153; | |
set 153(1? 153) => _153 = 153; | |
1? get 154 => _154; | |
set 154(1? 154) => _154 = 154; | |
1? get 155 => _155; | |
set 155(1? 155) => _155 = 155; | |
1? get 156 => _156; | |
set 156(1? 156) => _156 = 156; | |
1? get 157 => _157; | |
set 157(1? 157) => _157 = 157; | |
1? get 158 => _158; | |
set 158(1? 158) => _158 = 158; | |
1? get 159 => _159; | |
set 159(1? 159) => _159 = 159; | |
1? get 160 => _160; | |
set 160(1? 160) => _160 = 160; | |
1? get 161 => _161; | |
set 161(1? 161) => _161 = 161; | |
1? get 162 => _162; | |
set 162(1? 162) => _162 = 162; | |
1? get 163 => _163; | |
set 163(1? 163) => _163 = 163; | |
1? get 164 => _164; | |
set 164(1? 164) => _164 = 164; | |
1? get 165 => _165; | |
set 165(1? 165) => _165 = 165; | |
1? get 166 => _166; | |
set 166(1? 166) => _166 = 166; | |
1? get 167 => _167; | |
set 167(1? 167) => _167 = 167; | |
1? get 168 => _168; | |
set 168(1? 168) => _168 = 168; | |
1? get 169 => _169; | |
set 169(1? 169) => _169 = 169; | |
1? get 170 => _170; | |
set 170(1? 170) => _170 = 170; | |
1? get 171 => _171; | |
set 171(1? 171) => _171 = 171; | |
1? get 172 => _172; | |
set 172(1? 172) => _172 = 172; | |
1? get 173 => _173; | |
set 173(1? 173) => _173 = 173; | |
1? get 174 => _174; | |
set 174(1? 174) => _174 = 174; | |
1? get 175 => _175; | |
set 175(1? 175) => _175 = 175; | |
1? get 176 => _176; | |
set 176(1? 176) => _176 = 176; | |
1? get 177 => _177; | |
set 177(1? 177) => _177 = 177; | |
1? get 178 => _178; | |
set 178(1? 178) => _178 = 178; | |
1? get 179 => _179; | |
set 179(1? 179) => _179 = 179; | |
1? get 180 => _180; | |
set 180(1? 180) => _180 = 180; | |
1? get 181 => _181; | |
set 181(1? 181) => _181 = 181; | |
1? get 182 => _182; | |
set 182(1? 182) => _182 = 182; | |
1? get 183 => _183; | |
set 183(1? 183) => _183 = 183; | |
1? get 184 => _184; | |
set 184(1? 184) => _184 = 184; | |
Front? get front => _front; | |
set front(Front? front) => _front = front; | |
FrontAz? get frontAz => _frontAz; | |
set frontAz(FrontAz? frontAz) => _frontAz = frontAz; | |
FrontDe? get frontDe => _frontDe; | |
set frontDe(FrontDe? frontDe) => _frontDe = frontDe; | |
FrontEn? get frontEn => _frontEn; | |
set frontEn(FrontEn? frontEn) => _frontEn = frontEn; | |
FrontDe? get frontFr => _frontFr; | |
set frontFr(FrontDe? frontFr) => _frontFr = frontFr; | |
FrontEn? get frontHr => _frontHr; | |
set frontHr(FrontEn? frontHr) => _frontHr = frontHr; | |
FrontDe? get frontPl => _frontPl; | |
set frontPl(FrontDe? frontPl) => _frontPl = frontPl; | |
FrontPt? get frontPt => _frontPt; | |
set frontPt(FrontPt? frontPt) => _frontPt = frontPt; | |
FrontDe? get frontRo => _frontRo; | |
set frontRo(FrontDe? frontRo) => _frontRo = frontRo; | |
FrontDe? get ingredientsDe => _ingredientsDe; | |
set ingredientsDe(FrontDe? ingredientsDe) => _ingredientsDe = ingredientsDe; | |
FrontDe? get ingredientsEn => _ingredientsEn; | |
set ingredientsEn(FrontDe? ingredientsEn) => _ingredientsEn = ingredientsEn; | |
IngredientsFr? get ingredientsFr => _ingredientsFr; | |
set ingredientsFr(IngredientsFr? ingredientsFr) => _ingredientsFr = ingredientsFr; | |
FrontEn? get ingredientsHr => _ingredientsHr; | |
set ingredientsHr(FrontEn? ingredientsHr) => _ingredientsHr = ingredientsHr; | |
FrontAz? get ingredientsPl => _ingredientsPl; | |
set ingredientsPl(FrontAz? ingredientsPl) => _ingredientsPl = ingredientsPl; | |
FrontPt? get ingredientsPt => _ingredientsPt; | |
set ingredientsPt(FrontPt? ingredientsPt) => _ingredientsPt = ingredientsPt; | |
IngredientsSl? get ingredientsSl => _ingredientsSl; | |
set ingredientsSl(IngredientsSl? ingredientsSl) => _ingredientsSl = ingredientsSl; | |
Front? get nutrition => _nutrition; | |
set nutrition(Front? nutrition) => _nutrition = nutrition; | |
FrontDe? get nutritionDe => _nutritionDe; | |
set nutritionDe(FrontDe? nutritionDe) => _nutritionDe = nutritionDe; | |
FrontDe? get nutritionEn => _nutritionEn; | |
set nutritionEn(FrontDe? nutritionEn) => _nutritionEn = nutritionEn; | |
Nutrition? get nutritionFr => _nutritionFr; | |
set nutritionFr(Nutrition? nutritionFr) => _nutritionFr = nutritionFr; | |
FrontEn? get nutritionHr => _nutritionHr; | |
set nutritionHr(FrontEn? nutritionHr) => _nutritionHr = nutritionHr; | |
FrontAz? get nutritionPl => _nutritionPl; | |
set nutritionPl(FrontAz? nutritionPl) => _nutritionPl = nutritionPl; | |
FrontPt? get nutritionPt => _nutritionPt; | |
set nutritionPt(FrontPt? nutritionPt) => _nutritionPt = nutritionPt; | |
FrontDe? get nutritionRo => _nutritionRo; | |
set nutritionRo(FrontDe? nutritionRo) => _nutritionRo = nutritionRo; | |
IngredientsSl? get nutritionSl => _nutritionSl; | |
set nutritionSl(IngredientsSl? nutritionSl) => _nutritionSl = nutritionSl; | |
FrontDe? get packagingEn => _packagingEn; | |
set packagingEn(FrontDe? packagingEn) => _packagingEn = packagingEn; | |
FrontEn? get packagingHr => _packagingHr; | |
set packagingHr(FrontEn? packagingHr) => _packagingHr = packagingHr; | |
FrontPt? get packagingPt => _packagingPt; | |
set packagingPt(FrontPt? packagingPt) => _packagingPt = packagingPt; | |
Images.fromJson(Map<String, dynamic> json) { | |
_11 = json['1'] != null ? new 1.fromJson(json['1']) : null; | |
_12 = json['2'] != null ? new 1.fromJson(json['2']) : null; | |
_a3 = json['3'] != null ? new Adjustments.fromJson(json['3']) : null; | |
_a4 = json['4'] != null ? new Adjustments.fromJson(json['4']) : null; | |
_15 = json['5'] != null ? new 1.fromJson(json['5']) : null; | |
_16 = json['6'] != null ? new 1.fromJson(json['6']) : null; | |
_17 = json['7'] != null ? new 1.fromJson(json['7']) : null; | |
_18 = json['8'] != null ? new 1.fromJson(json['8']) : null; | |
_110 = json['10'] != null ? new 10.fromJson(json['10']) : null; | |
_111 = json['11'] != null ? new 10.fromJson(json['11']) : null; | |
_112 = json['12'] != null ? new 10.fromJson(json['12']) : null; | |
_114 = json['14'] != null ? new 10.fromJson(json['14']) : null; | |
_115 = json['15'] != null ? new 1.fromJson(json['15']) : null; | |
_116 = json['16'] != null ? new 1.fromJson(json['16']) : null; | |
_117 = json['17'] != null ? new 1.fromJson(json['17']) : null; | |
_118 = json['18'] != null ? new 1.fromJson(json['18']) : null; | |
_119 = json['19'] != null ? new 1.fromJson(json['19']) : null; | |
_120 = json['20'] != null ? new 10.fromJson(json['20']) : null; | |
_121 = json['21'] != null ? new 10.fromJson(json['21']) : null; | |
_122 = json['22'] != null ? new 10.fromJson(json['22']) : null; | |
_123 = json['23'] != null ? new 1.fromJson(json['23']) : null; | |
_124 = json['24'] != null ? new 1.fromJson(json['24']) : null; | |
_125 = json['25'] != null ? new 1.fromJson(json['25']) : null; | |
_126 = json['26'] != null ? new 1.fromJson(json['26']) : null; | |
_127 = json['27'] != null ? new 1.fromJson(json['27']) : null; | |
_128 = json['28'] != null ? new 1.fromJson(json['28']) : null; | |
_131 = json['31'] != null ? new 1.fromJson(json['31']) : null; | |
_132 = json['32'] != null ? new 1.fromJson(json['32']) : null; | |
_133 = json['33'] != null ? new 1.fromJson(json['33']) : null; | |
_134 = json['34'] != null ? new 1.fromJson(json['34']) : null; | |
_135 = json['35'] != null ? new 1.fromJson(json['35']) : null; | |
_136 = json['36'] != null ? new 1.fromJson(json['36']) : null; | |
_137 = json['37'] != null ? new 1.fromJson(json['37']) : null; | |
_138 = json['38'] != null ? new 1.fromJson(json['38']) : null; | |
_139 = json['39'] != null ? new 1.fromJson(json['39']) : null; | |
_140 = json['40'] != null ? new 1.fromJson(json['40']) : null; | |
_141 = json['41'] != null ? new 1.fromJson(json['41']) : null; | |
_142 = json['42'] != null ? new 1.fromJson(json['42']) : null; | |
_143 = json['43'] != null ? new 1.fromJson(json['43']) : null; | |
_144 = json['44'] != null ? new 1.fromJson(json['44']) : null; | |
_145 = json['45'] != null ? new 1.fromJson(json['45']) : null; | |
_146 = json['46'] != null ? new 1.fromJson(json['46']) : null; | |
_147 = json['47'] != null ? new 1.fromJson(json['47']) : null; | |
_148 = json['48'] != null ? new 1.fromJson(json['48']) : null; | |
_149 = json['49'] != null ? new 1.fromJson(json['49']) : null; | |
_150 = json['50'] != null ? new 1.fromJson(json['50']) : null; | |
_151 = json['51'] != null ? new 1.fromJson(json['51']) : null; | |
_152 = json['52'] != null ? new 1.fromJson(json['52']) : null; | |
_153 = json['53'] != null ? new 1.fromJson(json['53']) : null; | |
_154 = json['54'] != null ? new 1.fromJson(json['54']) : null; | |
_155 = json['55'] != null ? new 1.fromJson(json['55']) : null; | |
_156 = json['56'] != null ? new 1.fromJson(json['56']) : null; | |
_157 = json['57'] != null ? new 1.fromJson(json['57']) : null; | |
_158 = json['58'] != null ? new 1.fromJson(json['58']) : null; | |
_159 = json['59'] != null ? new 1.fromJson(json['59']) : null; | |
_160 = json['60'] != null ? new 1.fromJson(json['60']) : null; | |
_161 = json['61'] != null ? new 1.fromJson(json['61']) : null; | |
_162 = json['62'] != null ? new 1.fromJson(json['62']) : null; | |
_163 = json['63'] != null ? new 1.fromJson(json['63']) : null; | |
_164 = json['64'] != null ? new 1.fromJson(json['64']) : null; | |
_165 = json['65'] != null ? new 1.fromJson(json['65']) : null; | |
_166 = json['66'] != null ? new 1.fromJson(json['66']) : null; | |
_167 = json['67'] != null ? new 1.fromJson(json['67']) : null; | |
_168 = json['68'] != null ? new 1.fromJson(json['68']) : null; | |
_169 = json['69'] != null ? new 1.fromJson(json['69']) : null; | |
_170 = json['70'] != null ? new 1.fromJson(json['70']) : null; | |
_171 = json['71'] != null ? new 1.fromJson(json['71']) : null; | |
_172 = json['72'] != null ? new 1.fromJson(json['72']) : null; | |
_173 = json['73'] != null ? new 1.fromJson(json['73']) : null; | |
_174 = json['74'] != null ? new 1.fromJson(json['74']) : null; | |
_175 = json['75'] != null ? new 1.fromJson(json['75']) : null; | |
_176 = json['76'] != null ? new 1.fromJson(json['76']) : null; | |
_177 = json['77'] != null ? new 1.fromJson(json['77']) : null; | |
_178 = json['78'] != null ? new 1.fromJson(json['78']) : null; | |
_179 = json['79'] != null ? new 1.fromJson(json['79']) : null; | |
_180 = json['80'] != null ? new 1.fromJson(json['80']) : null; | |
_181 = json['81'] != null ? new 1.fromJson(json['81']) : null; | |
_182 = json['82'] != null ? new 1.fromJson(json['82']) : null; | |
_183 = json['83'] != null ? new 1.fromJson(json['83']) : null; | |
_184 = json['84'] != null ? new 1.fromJson(json['84']) : null; | |
_front = json['front'] != null ? new Front.fromJson(json['front']) : null; | |
_frontAz = json['front_az'] != null ? new FrontAz.fromJson(json['front_az']) : null; | |
_frontDe = json['front_de'] != null ? new FrontDe.fromJson(json['front_de']) : null; | |
_frontEn = json['front_en'] != null ? new FrontEn.fromJson(json['front_en']) : null; | |
_frontFr = json['front_fr'] != null ? new FrontDe.fromJson(json['front_fr']) : null; | |
_frontHr = json['front_hr'] != null ? new FrontEn.fromJson(json['front_hr']) : null; | |
_frontPl = json['front_pl'] != null ? new FrontDe.fromJson(json['front_pl']) : null; | |
_frontPt = json['front_pt'] != null ? new FrontPt.fromJson(json['front_pt']) : null; | |
_frontRo = json['front_ro'] != null ? new FrontDe.fromJson(json['front_ro']) : null; | |
_ingredientsDe = json['ingredients_de'] != null ? new FrontDe.fromJson(json['ingredients_de']) : null; | |
_ingredientsEn = json['ingredients_en'] != null ? new FrontDe.fromJson(json['ingredients_en']) : null; | |
_ingredientsFr = json['ingredients_fr'] != null ? new IngredientsFr.fromJson(json['ingredients_fr']) : null; | |
_ingredientsHr = json['ingredients_hr'] != null ? new FrontEn.fromJson(json['ingredients_hr']) : null; | |
_ingredientsPl = json['ingredients_pl'] != null ? new FrontAz.fromJson(json['ingredients_pl']) : null; | |
_ingredientsPt = json['ingredients_pt'] != null ? new FrontPt.fromJson(json['ingredients_pt']) : null; | |
_ingredientsSl = json['ingredients_sl'] != null ? new IngredientsSl.fromJson(json['ingredients_sl']) : null; | |
_nutrition = json['nutrition'] != null ? new Front.fromJson(json['nutrition']) : null; | |
_nutritionDe = json['nutrition_de'] != null ? new FrontDe.fromJson(json['nutrition_de']) : null; | |
_nutritionEn = json['nutrition_en'] != null ? new FrontDe.fromJson(json['nutrition_en']) : null; | |
_nutritionFr = json['nutrition_fr'] != null ? new Nutrition.fromJson(json['nutrition_fr']) : null; | |
_nutritionHr = json['nutrition_hr'] != null ? new FrontEn.fromJson(json['nutrition_hr']) : null; | |
_nutritionPl = json['nutrition_pl'] != null ? new FrontAz.fromJson(json['nutrition_pl']) : null; | |
_nutritionPt = json['nutrition_pt'] != null ? new FrontPt.fromJson(json['nutrition_pt']) : null; | |
_nutritionRo = json['nutrition_ro'] != null ? new FrontDe.fromJson(json['nutrition_ro']) : null; | |
_nutritionSl = json['nutrition_sl'] != null ? new IngredientsSl.fromJson(json['nutrition_sl']) : null; | |
_packagingEn = json['packaging_en'] != null ? new FrontDe.fromJson(json['packaging_en']) : null; | |
_packagingHr = json['packaging_hr'] != null ? new FrontEn.fromJson(json['packaging_hr']) : null; | |
_packagingPt = json['packaging_pt'] != null ? new FrontPt.fromJson(json['packaging_pt']) : null; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
if (this._11 != null) { | |
data['1'] = this._11!.toJson(); | |
} | |
if (this._12 != null) { | |
data['2'] = this._12!.toJson(); | |
} | |
if (this._a3 != null) { | |
data['3'] = this._a3!.toJson(); | |
} | |
if (this._a4 != null) { | |
data['4'] = this._a4!.toJson(); | |
} | |
if (this._15 != null) { | |
data['5'] = this._15!.toJson(); | |
} | |
if (this._16 != null) { | |
data['6'] = this._16!.toJson(); | |
} | |
if (this._17 != null) { | |
data['7'] = this._17!.toJson(); | |
} | |
if (this._18 != null) { | |
data['8'] = this._18!.toJson(); | |
} | |
if (this._110 != null) { | |
data['10'] = this._110!.toJson(); | |
} | |
if (this._111 != null) { | |
data['11'] = this._111!.toJson(); | |
} | |
if (this._112 != null) { | |
data['12'] = this._112!.toJson(); | |
} | |
if (this._114 != null) { | |
data['14'] = this._114!.toJson(); | |
} | |
if (this._115 != null) { | |
data['15'] = this._115!.toJson(); | |
} | |
if (this._116 != null) { | |
data['16'] = this._116!.toJson(); | |
} | |
if (this._117 != null) { | |
data['17'] = this._117!.toJson(); | |
} | |
if (this._118 != null) { | |
data['18'] = this._118!.toJson(); | |
} | |
if (this._119 != null) { | |
data['19'] = this._119!.toJson(); | |
} | |
if (this._120 != null) { | |
data['20'] = this._120!.toJson(); | |
} | |
if (this._121 != null) { | |
data['21'] = this._121!.toJson(); | |
} | |
if (this._122 != null) { | |
data['22'] = this._122!.toJson(); | |
} | |
if (this._123 != null) { | |
data['23'] = this._123!.toJson(); | |
} | |
if (this._124 != null) { | |
data['24'] = this._124!.toJson(); | |
} | |
if (this._125 != null) { | |
data['25'] = this._125!.toJson(); | |
} | |
if (this._126 != null) { | |
data['26'] = this._126!.toJson(); | |
} | |
if (this._127 != null) { | |
data['27'] = this._127!.toJson(); | |
} | |
if (this._128 != null) { | |
data['28'] = this._128!.toJson(); | |
} | |
if (this._131 != null) { | |
data['31'] = this._131!.toJson(); | |
} | |
if (this._132 != null) { | |
data['32'] = this._132!.toJson(); | |
} | |
if (this._133 != null) { | |
data['33'] = this._133!.toJson(); | |
} | |
if (this._134 != null) { | |
data['34'] = this._134!.toJson(); | |
} | |
if (this._135 != null) { | |
data['35'] = this._135!.toJson(); | |
} | |
if (this._136 != null) { | |
data['36'] = this._136!.toJson(); | |
} | |
if (this._137 != null) { | |
data['37'] = this._137!.toJson(); | |
} | |
if (this._138 != null) { | |
data['38'] = this._138!.toJson(); | |
} | |
if (this._139 != null) { | |
data['39'] = this._139!.toJson(); | |
} | |
if (this._140 != null) { | |
data['40'] = this._140!.toJson(); | |
} | |
if (this._141 != null) { | |
data['41'] = this._141!.toJson(); | |
} | |
if (this._142 != null) { | |
data['42'] = this._142!.toJson(); | |
} | |
if (this._143 != null) { | |
data['43'] = this._143!.toJson(); | |
} | |
if (this._144 != null) { | |
data['44'] = this._144!.toJson(); | |
} | |
if (this._145 != null) { | |
data['45'] = this._145!.toJson(); | |
} | |
if (this._146 != null) { | |
data['46'] = this._146!.toJson(); | |
} | |
if (this._147 != null) { | |
data['47'] = this._147!.toJson(); | |
} | |
if (this._148 != null) { | |
data['48'] = this._148!.toJson(); | |
} | |
if (this._149 != null) { | |
data['49'] = this._149!.toJson(); | |
} | |
if (this._150 != null) { | |
data['50'] = this._150!.toJson(); | |
} | |
if (this._151 != null) { | |
data['51'] = this._151!.toJson(); | |
} | |
if (this._152 != null) { | |
data['52'] = this._152!.toJson(); | |
} | |
if (this._153 != null) { | |
data['53'] = this._153!.toJson(); | |
} | |
if (this._154 != null) { | |
data['54'] = this._154!.toJson(); | |
} | |
if (this._155 != null) { | |
data['55'] = this._155!.toJson(); | |
} | |
if (this._156 != null) { | |
data['56'] = this._156!.toJson(); | |
} | |
if (this._157 != null) { | |
data['57'] = this._157!.toJson(); | |
} | |
if (this._158 != null) { | |
data['58'] = this._158!.toJson(); | |
} | |
if (this._159 != null) { | |
data['59'] = this._159!.toJson(); | |
} | |
if (this._160 != null) { | |
data['60'] = this._160!.toJson(); | |
} | |
if (this._161 != null) { | |
data['61'] = this._161!.toJson(); | |
} | |
if (this._162 != null) { | |
data['62'] = this._162!.toJson(); | |
} | |
if (this._163 != null) { | |
data['63'] = this._163!.toJson(); | |
} | |
if (this._164 != null) { | |
data['64'] = this._164!.toJson(); | |
} | |
if (this._165 != null) { | |
data['65'] = this._165!.toJson(); | |
} | |
if (this._166 != null) { | |
data['66'] = this._166!.toJson(); | |
} | |
if (this._167 != null) { | |
data['67'] = this._167!.toJson(); | |
} | |
if (this._168 != null) { | |
data['68'] = this._168!.toJson(); | |
} | |
if (this._169 != null) { | |
data['69'] = this._169!.toJson(); | |
} | |
if (this._170 != null) { | |
data['70'] = this._170!.toJson(); | |
} | |
if (this._171 != null) { | |
data['71'] = this._171!.toJson(); | |
} | |
if (this._172 != null) { | |
data['72'] = this._172!.toJson(); | |
} | |
if (this._173 != null) { | |
data['73'] = this._173!.toJson(); | |
} | |
if (this._174 != null) { | |
data['74'] = this._174!.toJson(); | |
} | |
if (this._175 != null) { | |
data['75'] = this._175!.toJson(); | |
} | |
if (this._176 != null) { | |
data['76'] = this._176!.toJson(); | |
} | |
if (this._177 != null) { | |
data['77'] = this._177!.toJson(); | |
} | |
if (this._178 != null) { | |
data['78'] = this._178!.toJson(); | |
} | |
if (this._179 != null) { | |
data['79'] = this._179!.toJson(); | |
} | |
if (this._180 != null) { | |
data['80'] = this._180!.toJson(); | |
} | |
if (this._181 != null) { | |
data['81'] = this._181!.toJson(); | |
} | |
if (this._182 != null) { | |
data['82'] = this._182!.toJson(); | |
} | |
if (this._183 != null) { | |
data['83'] = this._183!.toJson(); | |
} | |
if (this._184 != null) { | |
data['84'] = this._184!.toJson(); | |
} | |
if (this._front != null) { | |
data['front'] = this._front!.toJson(); | |
} | |
if (this._frontAz != null) { | |
data['front_az'] = this._frontAz!.toJson(); | |
} | |
if (this._frontDe != null) { | |
data['front_de'] = this._frontDe!.toJson(); | |
} | |
if (this._frontEn != null) { | |
data['front_en'] = this._frontEn!.toJson(); | |
} | |
if (this._frontFr != null) { | |
data['front_fr'] = this._frontFr!.toJson(); | |
} | |
if (this._frontHr != null) { | |
data['front_hr'] = this._frontHr!.toJson(); | |
} | |
if (this._frontPl != null) { | |
data['front_pl'] = this._frontPl!.toJson(); | |
} | |
if (this._frontPt != null) { | |
data['front_pt'] = this._frontPt!.toJson(); | |
} | |
if (this._frontRo != null) { | |
data['front_ro'] = this._frontRo!.toJson(); | |
} | |
if (this._ingredientsDe != null) { | |
data['ingredients_de'] = this._ingredientsDe!.toJson(); | |
} | |
if (this._ingredientsEn != null) { | |
data['ingredients_en'] = this._ingredientsEn!.toJson(); | |
} | |
if (this._ingredientsFr != null) { | |
data['ingredients_fr'] = this._ingredientsFr!.toJson(); | |
} | |
if (this._ingredientsHr != null) { | |
data['ingredients_hr'] = this._ingredientsHr!.toJson(); | |
} | |
if (this._ingredientsPl != null) { | |
data['ingredients_pl'] = this._ingredientsPl!.toJson(); | |
} | |
if (this._ingredientsPt != null) { | |
data['ingredients_pt'] = this._ingredientsPt!.toJson(); | |
} | |
if (this._ingredientsSl != null) { | |
data['ingredients_sl'] = this._ingredientsSl!.toJson(); | |
} | |
if (this._nutrition != null) { | |
data['nutrition'] = this._nutrition!.toJson(); | |
} | |
if (this._nutritionDe != null) { | |
data['nutrition_de'] = this._nutritionDe!.toJson(); | |
} | |
if (this._nutritionEn != null) { | |
data['nutrition_en'] = this._nutritionEn!.toJson(); | |
} | |
if (this._nutritionFr != null) { | |
data['nutrition_fr'] = this._nutritionFr!.toJson(); | |
} | |
if (this._nutritionHr != null) { | |
data['nutrition_hr'] = this._nutritionHr!.toJson(); | |
} | |
if (this._nutritionPl != null) { | |
data['nutrition_pl'] = this._nutritionPl!.toJson(); | |
} | |
if (this._nutritionPt != null) { | |
data['nutrition_pt'] = this._nutritionPt!.toJson(); | |
} | |
if (this._nutritionRo != null) { | |
data['nutrition_ro'] = this._nutritionRo!.toJson(); | |
} | |
if (this._nutritionSl != null) { | |
data['nutrition_sl'] = this._nutritionSl!.toJson(); | |
} | |
if (this._packagingEn != null) { | |
data['packaging_en'] = this._packagingEn!.toJson(); | |
} | |
if (this._packagingHr != null) { | |
data['packaging_hr'] = this._packagingHr!.toJson(); | |
} | |
if (this._packagingPt != null) { | |
data['packaging_pt'] = this._packagingPt!.toJson(); | |
} | |
return data; | |
} | |
} | |
class Sizes { | |
100? _1100; | |
100? _1400; | |
100? _full; | |
Sizes({100? 1100, 100? 1400, 100? full}) { | |
if (1100 != null) { | |
this._1100 = 1100; | |
} | |
if (1400 != null) { | |
this._1400 = 1400; | |
} | |
if (full != null) { | |
this._full = full; | |
} | |
} | |
100? get 1100 => _1100; | |
set 1100(100? 1100) => _1100 = 1100; | |
100? get 1400 => _1400; | |
set 1400(100? 1400) => _1400 = 1400; | |
100? get full => _full; | |
set full(100? full) => _full = full; | |
Sizes.fromJson(Map<String, dynamic> json) { | |
_1100 = json['100'] != null ? new 100.fromJson(json['100']) : null; | |
_1400 = json['400'] != null ? new 100.fromJson(json['400']) : null; | |
_full = json['full'] != null ? new 100.fromJson(json['full']) : null; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
if (this._1100 != null) { | |
data['100'] = this._1100!.toJson(); | |
} | |
if (this._1400 != null) { | |
data['400'] = this._1400!.toJson(); | |
} | |
if (this._full != null) { | |
data['full'] = this._full!.toJson(); | |
} | |
return data; | |
} | |
} | |
class Sizes { | |
100? _1100; | |
100? _1200; | |
100? _1400; | |
100? _full; | |
Sizes({100? 1100, 100? 1200, 100? 1400, 100? full}) { | |
if (1100 != null) { | |
this._1100 = 1100; | |
} | |
if (1200 != null) { | |
this._1200 = 1200; | |
} | |
if (1400 != null) { | |
this._1400 = 1400; | |
} | |
if (full != null) { | |
this._full = full; | |
} | |
} | |
100? get 1100 => _1100; | |
set 1100(100? 1100) => _1100 = 1100; | |
100? get 1200 => _1200; | |
set 1200(100? 1200) => _1200 = 1200; | |
100? get 1400 => _1400; | |
set 1400(100? 1400) => _1400 = 1400; | |
100? get full => _full; | |
set full(100? full) => _full = full; | |
Sizes.fromJson(Map<String, dynamic> json) { | |
_1100 = json['100'] != null ? new 100.fromJson(json['100']) : null; | |
_1200 = json['200'] != null ? new 100.fromJson(json['200']) : null; | |
_1400 = json['400'] != null ? new 100.fromJson(json['400']) : null; | |
_full = json['full'] != null ? new 100.fromJson(json['full']) : null; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
if (this._1100 != null) { | |
data['100'] = this._1100!.toJson(); | |
} | |
if (this._1200 != null) { | |
data['200'] = this._1200!.toJson(); | |
} | |
if (this._1400 != null) { | |
data['400'] = this._1400!.toJson(); | |
} | |
if (this._full != null) { | |
data['full'] = this._full!.toJson(); | |
} | |
return data; | |
} | |
} | |
class SelectedImages { | |
Front? _front; | |
Front? _ingredients; | |
Front? _nutrition; | |
Front? _packaging; | |
SelectedImages({Front? front, Front? ingredients, Front? nutrition, Front? packaging}) { | |
if (front != null) { | |
this._front = front; | |
} | |
if (ingredients != null) { | |
this._ingredients = ingredients; | |
} | |
if (nutrition != null) { | |
this._nutrition = nutrition; | |
} | |
if (packaging != null) { | |
this._packaging = packaging; | |
} | |
} | |
Front? get front => _front; | |
set front(Front? front) => _front = front; | |
Front? get ingredients => _ingredients; | |
set ingredients(Front? ingredients) => _ingredients = ingredients; | |
Front? get nutrition => _nutrition; | |
set nutrition(Front? nutrition) => _nutrition = nutrition; | |
Front? get packaging => _packaging; | |
set packaging(Front? packaging) => _packaging = packaging; | |
SelectedImages.fromJson(Map<String, dynamic> json) { | |
_front = json['front'] != null ? new Front.fromJson(json['front']) : null; | |
_ingredients = json['ingredients'] != null ? new Front.fromJson(json['ingredients']) : null; | |
_nutrition = json['nutrition'] != null ? new Front.fromJson(json['nutrition']) : null; | |
_packaging = json['packaging'] != null ? new Front.fromJson(json['packaging']) : null; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
if (this._front != null) { | |
data['front'] = this._front!.toJson(); | |
} | |
if (this._ingredients != null) { | |
data['ingredients'] = this._ingredients!.toJson(); | |
} | |
if (this._nutrition != null) { | |
data['nutrition'] = this._nutrition!.toJson(); | |
} | |
if (this._packaging != null) { | |
data['packaging'] = this._packaging!.toJson(); | |
} | |
return data; | |
} | |
} | |
class Front { | |
Display? _display; | |
Display? _small; | |
Display? _thumb; | |
Front({Display? display, Display? small, Display? thumb}) { | |
if (display != null) { | |
this._display = display; | |
} | |
if (small != null) { | |
this._small = small; | |
} | |
if (thumb != null) { | |
this._thumb = thumb; | |
} | |
} | |
Display? get display => _display; | |
set display(Display? display) => _display = display; | |
Display? get small => _small; | |
set small(Display? small) => _small = small; | |
Display? get thumb => _thumb; | |
set thumb(Display? thumb) => _thumb = thumb; | |
Front.fromJson(Map<String, dynamic> json) { | |
_display = json['display'] != null ? new Display.fromJson(json['display']) : null; | |
_small = json['small'] != null ? new Display.fromJson(json['small']) : null; | |
_thumb = json['thumb'] != null ? new Display.fromJson(json['thumb']) : null; | |
} | |
Map<String, dynamic> toJson() { | |
final Map<String, dynamic> data = new Map<String, dynamic>(); | |
if (this._display != null) { | |
data['display'] = this._display!.toJson(); | |
} | |
if (this._small != null) { | |
data['small'] = this._small!.toJson(); | |
} | |
if (this._thumb != null) { | |
data['thumb'] = this._thumb!.toJson(); | |
} | |
return data; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment