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