instance property
PortsipPlatform
get
instance
The default instance of PortsipPlatform to use.
Defaults to MethodChannelPortsip.
Implementation
static PortsipPlatform get instance => _instance;
set
instance
(PortsipPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends PortsipPlatform when they register themselves.
Implementation
static set instance(PortsipPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}