instance property

FilepondPlatform get instance

The default instance of FilepondPlatform to use.

Defaults to MethodChannelFilepond.

Implementation

static FilepondPlatform get instance => _instance;
set instance (FilepondPlatform instance)

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

Implementation

static set instance(FilepondPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}