instance property

The default instance of SwiftNotificationsPlatform to use.

Defaults to MethodChannelSwiftNotifications.

Implementation

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

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

Implementation

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