forward method

void forward({
  1. double from = 0.0,
})

Plays the animation forward from passed parameter.

Implementation

void forward({double from = 0.0}) {
  if (_controller != null) {
    _controller!.forward(from: from);
  }
}