StreetViewPanoramaOptions constructor

StreetViewPanoramaOptions({
  1. String? panoId,
  2. LatLng? position,
  3. double? radius,
  4. StreetViewSource? source,
  5. bool? panningGesturesEnabled,
  6. bool? streetNamesEnabled,
  7. bool? userNavigationEnabled,
  8. bool? zoomGesturesEnabled,
  9. StreetViewPanoramaCamera? panoramaCamera,
})

Implementation

StreetViewPanoramaOptions(
    {this.panoId,
    this.position,
    this.radius,
    this.source,
    this.panningGesturesEnabled,
    this.streetNamesEnabled,
    this.userNavigationEnabled,
    this.zoomGesturesEnabled,
    this.panoramaCamera})
    : assert(panoId == null || position == null);