detach method
Unregister the given position with this controller.
After this function returns, the animateTo and jumpTo methods on this controller will not manipulate the given position.
Implementation
@override
void detach(ScrollPosition position) {
_isEnabled = false;
if (positions.contains(position)) {
super.detach(position);
}
}