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