TransformModifier constructor

const TransformModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. required Matrix4 transform,
  5. Offset? origin,
  6. AlignmentGeometry? alignment,
  7. bool transformHitTests = true,
  8. FilterQuality? filterQuality,
})

Creates a widget that transforms its child.

The transform argument must not be null.

Implementation

const TransformModifier({
  super.key,
  super.child,
  super.modifierKey,
  required this.transform,
  this.origin,
  this.alignment,
  this.transformHitTests = true,
  this.filterQuality,
});