useAuthenticator property

bool? useAuthenticator

If it's set to true, allows you to connect to the external Regula Bluetooth devices like Regula 1120 and others.

Implementation

bool? get useAuthenticator => _useAuthenticator;
void useAuthenticator=(bool? val)

Implementation

set useAuthenticator(bool? val) {
  _useAuthenticator = val;
  _set({"useAuthenticator": val});
}