Transform.flipVertical constructor

Transform.flipVertical({
  1. Widget? child,
  2. Key? key,
})

Creates a transform that flips content vertically.

Implementation

Transform.flipVertical({super.child, super.key})
  : translateX = 0,
    translateY = 0,
    flipH = false,
    flipV = true;