toList method

  1. @override
List<double> toList()
override

Returns a fixed-length list containing the lightness, a, and b values, in that order.

Implementation

@override
List<double> toList() =>
    List<double>.from(<double>[lightness, a, b], growable: false);