Transform constructor

Transform({
  1. required int alignment,
  2. required int boundsAlignment,
  3. required double boundsHeight,
  4. required String boundsType,
  5. required double boundsWidth,
  6. required int cropBottom,
  7. required int cropLeft,
  8. required int cropRight,
  9. required int cropTop,
  10. required double height,
  11. required double positionX,
  12. required double positionY,
  13. required double rotation,
  14. required double scaleX,
  15. required double scaleY,
  16. required double sourceHeight,
  17. required double sourceWidth,
  18. required double width,
})

Implementation

Transform({
  required this.alignment,
  required this.boundsAlignment,
  required this.boundsHeight,
  required this.boundsType,
  required this.boundsWidth,
  required this.cropBottom,
  required this.cropLeft,
  required this.cropRight,
  required this.cropTop,
  required this.height,
  required this.positionX,
  required this.positionY,
  required this.rotation,
  required this.scaleX,
  required this.scaleY,
  required this.sourceHeight,
  required this.sourceWidth,
  required this.width,
});