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