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