setAddressControlOptions method

Future<void> setAddressControlOptions(
  1. ControlPosition pos
)

Sets address control display position. Web only

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

Implementation

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