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