improve static method
Adjusts the image colors, contrast and brightness.
Use the constants defined in \Cloudinary\Transformation\Improve for $mode.
Receives blend dynamic
How much to blend the improved result with the original image,
where 0 means only use the original and 100 means only use the improved result.
(Range: 0 to 100, Server default: 100)
mode ImproveMode
The improve mode. Use the constants defined in the Improve class.
Returns Improve
Implementation
static Improve improve({ImproveMode? mode, int? blend}) {
return Improve(mode: mode, blend: blend);
}