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