Transform constructor

Transform({
  1. int translateX = 0,
  2. int translateY = 0,
  3. bool flipH = false,
  4. bool flipV = false,
  5. Widget? child,
  6. Key? key,
})

Creates a transform with all options.

Implementation

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