jumpTo method
When this position is driven externally (no real viewport / notification context) use syncPixels so we never dereference a null notificationContext.
Implementation
@override
void jumpTo(double value) {
if (context.notificationContext == null) {
syncPixels(value);
} else {
super.jumpTo(value);
}
}