FlipCallback typedef

FlipCallback = dynamic Function(bool flipX, bool flipY)

A typedef representing a callback function invoked when a flip action is performed.

The flipX parameter indicates whether the image is flipped horizontally. The flipY parameter indicates whether the image is flipped vertically.

Implementation

typedef FlipCallback = Function(bool flipX, bool flipY);