instance property

The default instance of UrlLauncherPlatform to use.

Defaults to MethodChannelUrlLauncher.

Implementation

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

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

Implementation

static set instance(TaudioWaaPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}