rotateHue method

  1. @override
OklabColor rotateHue(
  1. num amount
)
override

Rotates the hue of this color by amount in degrees.

Implementation

@override
OklabColor rotateHue(num amount) =>
    ColorAdjustments.rotateHue(this, amount).toOklabColor();