scroll method

void scroll({
  1. required double dx,
  2. required double dy,
})

Scroll map.

Parameters

  • IN dx Horizontal scroll offset
  • IN dy Vertical scroll offset

Throws

  • An exception if it fails.

Implementation

void scroll({required final double dx, required final double dy}) {
  objectMethod(_pointerId, 'GemMapView', 'scroll');
}