cholesterolServing property

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

Cholesterol, in grams, per serving of product as sold

Implementation

@Deprecated('Use getValue instead')
double? get cholesterolServing =>
    getValue(Nutrient.cholesterol, PerSize.serving);
  1. @Deprecated('Use setValue instead')
set cholesterolServing (double? value)

Implementation

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