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