onscroll property

(dynamic Function(Event)?) onscroll

Fires when the user repositions the scroll box in the scroll bar on the object. @param ev The event.

MDN Reference

Implementation

_i2.dynamic Function(_i3.Event)? get onscroll =>
    (_i3.Event p0) => _i4.callMethod(
          _i4.getProperty(
            this,
            'onscroll',
          ),
          r'call',
          [
            this,
            p0,
          ],
        );
void onscroll=(dynamic value(Event)?)

Implementation

set onscroll(_i2.dynamic Function(_i3.Event)? value) {
  _i4.setProperty(
    this,
    'onscroll',
    value == null ? _i6.undefined : _i4.allowInterop(value),
  );
}