animatedScale method

Widget animatedScale({
  1. double start = 0,
  2. double end = 1,
  3. Curve? curve,
  4. Duration? duration,
  5. Alignment alignment = Alignment.center,
})

Implementation

Widget animatedScale({
  double start = 0,
  double end = 1,
  Curve? curve,
  Duration? duration,
  Alignment alignment = Alignment.center,
}) =>
    _GrockScaleAnimation(
      child: this,
      to: end,
      from: start,
      duration: duration,
      curve: curve,
      alignment: alignment,
    );