instance property

AppusagemodulePlatform get instance

The default instance of AppusagemodulePlatform to use.

Defaults to MethodChannelAppusagemodule.

Implementation

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

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

Implementation

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