instance property

The default instance of AppFrameworkComponentPlatform to use.

Defaults to MethodChannelAppFrameworkComponent.

Implementation

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

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

Implementation

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