instance property

Implementation

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

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

Implementation

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