instance property

SimpleLoaderPlatform get instance

The default instance of SimpleLoaderPlatform to use.

Defaults to MethodChannelSimpleLoader.

Implementation

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

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

Implementation

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