instance property

The default instance of AudioFocusPluginPlatform to use.

Defaults to MethodChannelAudioFocusPlugin.

Implementation

static AudioFocusPluginPlatform get instance => _instance;
set instance (AudioFocusPluginPlatform instance)

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

Implementation

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