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