tModulate static method

TransformationData tModulate({
  1. double? brightness = 1,
  2. double? saturation = 1,
  3. int? hue = 90,
})

Basic Transformations

  • brightness : brightness (Default: 1)

  • saturation : saturation (Default: 1)

  • hue : hue (Default: 90)

Returns TransformationData.

Implementation

static TransformationData tModulate(
    {double? brightness = 1, double? saturation = 1, int? hue = 90}) {
  // Call the generated class method
  return TModulate().modulate(brightness, saturation, hue);
}