caffeine property

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

Caffeine, in grams, per 100 grams of product as sold

Implementation

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

Implementation

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