toPreciseList method

List<num> toPreciseList()

Returns a fixed-length list containing the precise red, green, and blue values.

Implementation

List<num> toPreciseList() =>
    List<num>.from(<num>[_red, _green, _blue], growable: false);