open method

void open({
  1. double? velocity,
})

Retargets toward 1 on the open motion, carrying velocity over.

Implementation

void open({double? velocity}) {
  final double v = velocity ?? _velocity;
  _scrubbing = false;
  _handedOff = false;
  _retarget(1, velocity: v);
}