instance property

The default instance of DocumentFileSavePlusPlatform to use.

Defaults to MethodChannelDocumentFileSavePlus.

Implementation

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

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

Implementation

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