carbohydrates property

  1. @Deprecated('Use getValue instead')
double? carbohydrates

Carbohydrates, in grams, per 100 grams of product as sold

Implementation

@Deprecated('Use getValue instead')
double? get carbohydrates =>
    getValue(Nutrient.carbohydrates, PerSize.oneHundredGrams);
  1. @Deprecated('Use setValue instead')
void carbohydrates=(double? value)

Implementation

@Deprecated('Use setValue instead')
set carbohydrates(final double? value) =>
    setValue(Nutrient.carbohydrates, PerSize.oneHundredGrams, value);