MagneticFlux constructor

MagneticFlux({
  1. dynamic Wb,
  2. double uncert = 0.0,
})

Constructs a MagneticFlux with webers (Wb). Optionally specify a relative standard uncertainty.

Implementation

// ignore: non_constant_identifier_names
MagneticFlux({dynamic Wb, double uncert = 0.0}) : super(Wb ?? 0.0, MagneticFlux.webers, uncert);