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