animateTo method

Future<void> animateTo(
  1. int viewId, {
  2. StreetViewPanoramaCamera? camera,
  3. int? duration,
})

Animate camera to a given position over a specified duration.

Return Future while the change has been started on the platform side.

Implementation

Future<void> animateTo(int viewId,
    {StreetViewPanoramaCamera? camera, int? duration}) {
  throw UnimplementedError('animateTo() has not been implemented.');
}