instance property

AudioDecoderPlatform get instance

The current platform-specific implementation.

Implementation

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

Sets the platform-specific implementation to use.

Implementation

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