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