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