Transform constructor

Transform({
  1. required Matrix4 transform,
  2. PdfPoint? origin,
  3. AlignmentGeometry? alignment,
  4. bool adjustLayout = false,
  5. bool unconstrained = false,
  6. Widget? child,
})

Implementation

Transform({
  required this.transform,
  this.origin,
  this.alignment,
  this.adjustLayout = false,
  this.unconstrained = false,
  Widget? child,
}) : super(child: child);