forward method
Plays the animation forward from passed parameter.
Implementation
void forward({double from = 0.0}) {
if (_controller != null) {
_controller!.forward(from: from);
}
}
Plays the animation forward from passed parameter.
void forward({double from = 0.0}) {
if (_controller != null) {
_controller!.forward(from: from);
}
}