ElectricPotentialDifference constructor

ElectricPotentialDifference({
  1. dynamic V,
  2. double uncert = 0.0,
})

Constructs an ElectricPotentialDifference with volts (V). Optionally specify a relative standard uncertainty.

Implementation

ElectricPotentialDifference({dynamic V, double uncert = 0.0})
    : super(V ?? 0.0, ElectricPotentialDifference.volts, uncert);