scroll method
- dynamic options_OR_x,
- dynamic y,
- Map? scrollOptions
Scrolls the page horizontally and vertically to a specific point.
This method is identical to scrollTo.
Other resources
- Window.scroll from MDN.
Implementation
void scroll([options_OR_x, y, Map? scrollOptions]) {
if (options_OR_x == null && y == null && scrollOptions == null) {
_scroll_1();
return;
}
if ((options_OR_x is Map) && y == null && scrollOptions == null) {
var options_1 = convertDartToNative_Dictionary(options_OR_x);
_scroll_2(options_1);
return;
}
if ((y is num) && (options_OR_x is num) && scrollOptions == null) {
_scroll_3(options_OR_x, y);
return;
}
if ((y is int) && (options_OR_x is int) && scrollOptions == null) {
_scroll_4(options_OR_x, y);
return;
}
if (scrollOptions != null && (y is int) && (options_OR_x is int)) {
var scrollOptions_1 = convertDartToNative_Dictionary(scrollOptions);
_scroll_5(options_OR_x, y, scrollOptions_1);
return;
}
throw new ArgumentError("Incorrect number or type of arguments");
}