ZoomTransform constructor

const ZoomTransform({
  1. double scale = 1.0,
  2. double translateX = 0.0,
  3. double translateY = 0.0,
})

Creates a ZoomTransform.

Implementation

const ZoomTransform({
  this.scale = 1.0,
  this.translateX = 0.0,
  this.translateY = 0.0,
});