alcoholServing property

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

Alcohol, in % vol, per serving of product as sold

Implementation

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

Implementation

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