stearicAcid property

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

Stearic Acid, in grams, per 100 grams of product as sold

Implementation

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

Implementation

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