vibrance static method

LevelAdjust vibrance([
  1. dynamic strength
])

Applies a vibrance filter on the image.

Receives strength dynamic The strength of the vibrance. (Range: -100 to 100, Server default: 20) Returns LevelAdjust.

Implementation

static LevelAdjust vibrance([dynamic strength]) {
  return LevelAdjust('vibrance', strength);
}