instance property
CustomAlertPluginPlatform
get
instance
The default instance of CustomAlertPluginPlatform to use.
Defaults to MethodChannelCustomAlertPlugin.
Implementation
static CustomAlertPluginPlatform get instance => _instance;
set
instance
(CustomAlertPluginPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends CustomAlertPluginPlatform when they register themselves.
Implementation
static set instance(CustomAlertPluginPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}