instance property

OpenIosSettingPlatform get instance

The default instance of OpenIosSettingPlatform to use.

Defaults to MethodChannelOpenIosSetting.

Implementation

static OpenIosSettingPlatform get instance => _instance;
set instance (OpenIosSettingPlatform instance)

Platform-specific implementations should set this with their own platform-specific class that extends OpenIosSettingPlatform when they register themselves.

Implementation

static set instance(OpenIosSettingPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}