The amount that is expected to scroll vertically, in units determined by deltaMode.
See also:
num get deltaY {
if (JS('bool', '#.deltaY !== undefined', this)) {
// W3C WheelEvent
return this._deltaY;
}
throw new UnsupportedError('deltaY is not supported');
}