instance property

The default instance of FileSelectorPlatform to use.

Defaults to MethodChannelFileSelector.

Implementation

static FileSelectorPlatform get instance => _instance;
void instance=(FileSelectorPlatform instance)

Platform-specific plugins should set this with their own platform-specific class that extends FileSelectorPlatform when they register themselves.

Implementation

static set instance(FileSelectorPlatform instance) {
  PlatformInterface.verify(instance, _token);
  _instance = instance;
}