alcohol property

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

Alcohol, in % vol, per 100g of product as sold

Implementation

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

Implementation

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