instance property

The default instance of FlutterUrovoScanPlatform to use.

Defaults to MethodChannelFlutterUrovoScan.

Implementation

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

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

Implementation

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