instance property

The default instance of FlutterLocalNotificationsPlatform to use.

Implementation

static FlutterLocalNotificationsPlatform get instance => _instance;
void instance=(FlutterLocalNotificationsPlatform instance)

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

Implementation

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