Scroll constructor

Scroll(
  1. SerializableFinder finder,
  2. double dx,
  3. double dy,
  4. Duration duration,
  5. int frequency,
  6. {Duration? timeout}
)

Creates a scroll command that will attempt to scroll a scrollable view by dragging a widget located by the given finder.

Implementation

Scroll(
  super.finder,
  this.dx,
  this.dy,
  this.duration,
  this.frequency, {
  super.timeout,
});