complement method

Color complement()

Implementation

Color complement() {
  final hsl = HSLColor.fromColor(this);
  final hue = (hsl.hue + 180) % 360;

  return hsl.withHue(hue).toColor();
}