withRed method

  1. @override
Color withRed(
  1. int r
)
override

Returns a new color that matches this color with the red channel replaced with r (which ranges from 0 to 255).

Out of range values will have unexpected effects.

Implementation

@override
Color withRed(int r) => BigColor.fromARGB(alpha, r, green, blue);