chlorideServing property

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

Chloride, in grams, per serving of product as sold

Implementation

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

Implementation

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