calciumServing property

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

Calcium, in grams, per serving of product as sold

Implementation

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

Implementation

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