instance property

AlarmPlusPlatform get instance

The default instance of AlarmPlusPlatform to use.

Defaults to MethodChannelAlarmPlus.

Implementation

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

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

Implementation

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