AbsorbedDose.inUnits constructor

AbsorbedDose.inUnits(
  1. dynamic value,
  2. AbsorbedDoseUnits? units, [
  3. double uncert = 0.0
])

Constructs an AbsorbedDose based on the value and the conversion factor intrinsic to the passed units.

Implementation

AbsorbedDose.inUnits(dynamic value, AbsorbedDoseUnits? units, [double uncert = 0.0])
    : super(value, units ?? AbsorbedDose.grays, uncert);