getPanorama method
Implementation
Future<StreetViewResponse> getPanorama(
Object? /*StreetViewLocationRequest?|StreetViewPanoRequest?*/ request, [
void Function(StreetViewPanoramaData?, StreetViewStatus?)? callback,
]) =>
promiseToFuture(callMethod(this, 'getPanorama', [
request,
callback == null
? null
: allowInterop((p0, p1) => callback(p0, StreetViewStatus$cast(p1)))
]));