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