Illuminance constructor

Illuminance({
  1. dynamic lux,
  2. double uncert = 0.0,
})

Constructs an Illuminance with lux. Optionally specify a relative standard uncertainty.

Implementation

Illuminance({dynamic lux, double uncert = 0.0})
    : super(lux ?? 0.0, Illuminance.lux, uncert);