forwardFunction method

void forwardFunction({
  1. double? from,
})
inherited

Start animation to forward Forward is animationController.value == 0.0

Implementation

void forwardFunction({double? from}) {
  assert(isAttached, _message);
  _stateMixin!.forward(from: from);
}