updateStreetViewOptions method

  1. @override
Future updateStreetViewOptions(
  1. Map<String, dynamic> optionsUpdate, {
  2. required int viewId,
})
override

Updates configuration options of the street view user interface.

Change listeners are notified once the update has been made on the platform side.

The returned Future completes after listeners have been notified.

Implementation

@override
Future<dynamic> updateStreetViewOptions(
  Map<String, dynamic> optionsUpdate, {
  required int viewId,
}) {
  return channel(viewId)!
      .invokeMethod("streetView#updateOptions", optionsUpdate);
}