instance property

The default instance of TcmppFlutterMediaPlatform to use.

Defaults to MethodChannelTcmppFlutterMedia.

Implementation

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

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

Implementation

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