instance property

Implementation

static StreetViewFlutterPlatform get instance => _instance;
void instance=(StreetViewFlutterPlatform instance)

Platform-specific plugins should set this with their own platform-specific class that extends UrlLauncherPlatform when they register themselves.

Implementation

static set instance(StreetViewFlutterPlatform instance) {
  PlatformInterface.verify(instance, _token);
  _instance = instance;
}