LabColor constructor

const LabColor(
  1. num l,
  2. num a,
  3. num b
)

A color in the CIELAB color space.

l must be >= 0 and <= 100.

a and b must both be >= -128 and <= 127.

Implementation

const LabColor(this.l, this.a, this.b);