Permeability constructor

Permeability({
  1. dynamic henriesPerMeter,
  2. dynamic newtonsPerAmpereSquared,
  3. double uncert = 0.0,
})

Constructs a Permeability with henries per meter or newtons per ampere squared. Optionally specify a relative standard uncertainty.

Implementation

Permeability({dynamic henriesPerMeter, dynamic newtonsPerAmpereSquared, double uncert = 0.0})
    : super(
          henriesPerMeter ?? (newtonsPerAmpereSquared ?? 0.0),
          newtonsPerAmpereSquared != null ? Permeability.newtonsPerAmpereSquared : Permeability.henriesPerMeter,
          uncert);