AffineTransform constructor

AffineTransform({
  1. double? scaleX,
  2. double? scaleY,
  3. double? shearX,
  4. double? shearY,
  5. double? translateX,
  6. double? translateY,
  7. String? unit,
})

Implementation

AffineTransform({
  this.scaleX,
  this.scaleY,
  this.shearX,
  this.shearY,
  this.translateX,
  this.translateY,
  this.unit,
});