instance property

The default instance of IosNativeSidebarPlatform to use.

Defaults to MethodChannelIosNativeSidebar.

Implementation

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

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

Implementation

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