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