complement method
Implementation
Color complement() {
final hsl = HSLColor.fromColor(this);
final hue = (hsl.hue + 180) % 360;
return hsl.withHue(hue).toColor();
}
Color complement() {
final hsl = HSLColor.fromColor(this);
final hue = (hsl.hue + 180) % 360;
return hsl.withHue(hue).toColor();
}