zoom static method

AnimatedRepeatableBuilder zoom([
  1. double from = 0,
  2. double to = 1
])

Creates a transition builder that produces a zooming effect on the text widget.

from (optional, double) : Defines the starting scale of the text widget during the animation cycle. Defaults to 0.0, which means the text widget starts off completely zoomed out (invisible).

to (optional, double) : Defines the ending scale of the text widget during the animation cycle. Defaults to 1.0, which means the text widget ends up at its original size.

Implementation

static AnimatedRepeatableBuilder zoom([
  double from = 0,
  double to = 1,
]) {
  return AnimatedRepeatable.zoom(from, to);
}