carbohydratesServing property

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

Carbohydrates, in grams, per serving of product as sold

Implementation

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

Implementation

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