instance property

ReactiveBlePlatform get instance

Implementation

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

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

Implementation

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