Darkens this color by amount (0..1) in HSL space.
amount
Color darken(double amount) { final hsl = HSLColor.fromColor(this); return hsl .withLightness((hsl.lightness - amount).clamp(0.0, 1.0)) .toColor(); }