applyFilter method

  1. @override
RGBA applyFilter(
  1. RGBA color
)
override

Apply the HueRotationSubFilter to a color.

Implementation

@override
RGBA applyFilter(RGBA color) =>
    color_filter_utils.hueRotation(color, degrees);