autoBrightness static method

AutoBrightness autoBrightness([
  1. dynamic blend
])

Adjusts the brightness and blends the result with the original image.

Receives blend How much to blend the adjusted brightness, where 0 means only use the original and 100 means only use the adjusted brightness result. (Range: 0 to 100, Server default: 100) returns AutoBrightness

Implementation

static AutoBrightness autoBrightness([dynamic blend]) {
  return AutoBrightness(blend);
}