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