ChartRamp.thermal constructor
ChartRamp.thermal()
A blue-to-red thermal ramp.
Implementation
factory ChartRamp.thermal() {
return ChartRamp(const [
UvColor.rgb(11, 19, 43),
UvColor.rgb(21, 43, 82),
UvColor.rgb(42, 78, 140),
UvColor.rgb(56, 120, 168),
UvColor.rgb(92, 189, 196),
UvColor.rgb(178, 231, 170),
UvColor.rgb(247, 204, 90),
UvColor.rgb(244, 120, 54),
UvColor.rgb(230, 57, 70),
]);
}