lighten method
Lightens the current color toward white by factor.
Implementation
void lighten(double factor) =>
value = Color.lerp(value, Colors.white, factor)!;
Lightens the current color toward white by factor.
void lighten(double factor) =>
value = Color.lerp(value, Colors.white, factor)!;