ScaleAnimation.y constructor

const ScaleAnimation.y({
  1. double from = 0,
  2. double to = 1,
})

Implementation

const ScaleAnimation.y({
  double from = 0,
  double to = 1,
})  : fromX = 1,
      fromY = from,
      fromZ = 1,
      toX = 1,
      toY = to,
      toZ = 1;