instance property
ScrcpyVideoPlatform
get
instance
Active platform implementation.
Implementation
static ScrcpyVideoPlatform get instance => _instance;
set
instance
(ScrcpyVideoPlatform instance)
Replaces the active platform implementation after token verification.
Implementation
static set instance(ScrcpyVideoPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}