Transform constructor
Transform({
- required Matrix4 transform,
- PdfPoint? origin,
- AlignmentGeometry? alignment,
- bool adjustLayout = false,
- bool unconstrained = false,
- Widget? child,
Implementation
Transform({
required this.transform,
this.origin,
this.alignment,
this.adjustLayout = false,
this.unconstrained = false,
Widget? child,
}) : super(child: child);