Frequency.inUnits constructor

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

Constructs a Frequency based on the value and the conversion factor intrinsic to the passed units.

Implementation

Frequency.inUnits(dynamic value, FrequencyUnits? units, [double uncert = 0.0])
    : super(value, units ?? Frequency.hertz, uncert);