instance property

OcrPlatform get instance

The default instance of OcrPlatform to use.

Defaults to MethodChannelOcr.

Implementation

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

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

Implementation

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