debugSaveRFIDSession property

bool? get debugSaveRFIDSession

If set to true, RFID sessions will be saved to the application's directory.

Implementation

bool? get debugSaveRFIDSession => _debugSaveRFIDSession;
set debugSaveRFIDSession (bool? val)

Implementation

set debugSaveRFIDSession(bool? val) {
  _debugSaveRFIDSession = val;
  _set({"debugSaveRFIDSession": val});
}