instance property

SoundEffectPlatform get instance

The default instance of SoundEffectPlatform to use.

Defaults to MethodChannelSoundEffect.

Implementation

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

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

Implementation

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