iodine property

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

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

Implementation

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

Implementation

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