scrollBy method

Future<void> scrollBy(
  1. double dx,
  2. double dy, {
  3. bool animate = false,
})

Implementation

Future<void> scrollBy(
  double dx,
  double dy, {
  bool animate = false,
}) =>
    updateCamera(CameraUpdate.scrollBy(dx, dy), animate: animate);