Darkens the color by blending it with black.
Color darken([double factor = 0.1]) { return Color.lerp(this, Colors.black, factor.clamp(0.0, 1.0)) ?? this; }