channelsOrNull property

List<double?> get channelsOrNull

The values of this color's channels (excluding the alpha channel), or null for missing channels.

Note that the semantics of each of these channels varies significantly based on the value of space.

Implementation

List<double?> get channelsOrNull =>
    List.unmodifiable([channel0OrNull, channel1OrNull, channel2OrNull]);