setFullscreenControlOptions method

Future<void> setFullscreenControlOptions(
  1. ControlPosition pos
)

Sets fullscreen control display position. Web only

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

Implementation

Future<void> setFullscreenControlOptions(ControlPosition pos) {
  if (!kIsWeb)
    throw UnsupportedError(
        "[setFullscreenControlOptions] is not yet supported for Web.");
  return _streetViewFlutterPlatform.setFullscreenControlOptions(viewId, pos);
}