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