transformedFlip method

Widget transformedFlip({
  1. bool flipX = false,
  2. bool flipY = false,
  3. Offset? origin,
  4. bool transformHitTests = true,
  5. FilterQuality filterQuality = FilterQuality.low,
  6. Key? key,
})

Flips the child along the horizontal and/or vertical axes.

Implementation

Widget transformedFlip({
  bool flipX = false,
  bool flipY = false,
  Offset? origin,
  bool transformHitTests = true,
  FilterQuality filterQuality = FilterQuality.low,
  Key? key,
}) {
  return Transform.flip(
    key: key,
    filterQuality: filterQuality,
    transformHitTests: transformHitTests,
    flipX: flipX,
    flipY: flipY,
    origin: origin,
    child: this,
  );
}