lux constant

AlternateUnit const lux

The derived unit for illuminance (lx).

One Lux is equal to one lumen per square meter.

Implementation

static const AlternateUnit lux = AlternateUnit(
    'lx',
    ProductUnit._([
      RationalPower<Unit>(lumen),
      RationalPower<Unit>(meter, RationalNumber._(-2))
    ]));