scrollY property

int get scrollY

The distance this window has been scrolled vertically.

Other resources

Implementation

int get scrollY =>
    JS<bool>('bool', '("scrollY" in #)', this)
        ? JS<num>('num', '#.scrollY', this).round()
        : document.documentElement!.scrollTop;