instance property

DocScanPlatform get instance

The default instance of DocScanPlatform to use.

Defaults to MethodChannelDocScan.

Implementation

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

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

Implementation

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