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