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