TransformModifier constructor
const
TransformModifier({
- Key? key,
- Widget? child,
- Key? modifierKey,
- required Matrix4 transform,
- Offset? origin,
- AlignmentGeometry? alignment,
- bool transformHitTests = true,
- 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,
});