getDebugInfo method

Map<String, dynamic> getDebugInfo()

Obtiene información de debug

Implementation

Map<String, dynamic> getDebugInfo() {
  return {
    'userId': getUserId(),
    'personId': getPersonId(),
    'passportId': getPassportId(),
    'contractId': getContractId(),
    'sessionId': getSessionId(),
    'installationId': getInstallationId(),
    'executionId': getExecutionId(),
    'sequence': getCurrentSequence(),
    'sessionTimestamp': getSessionTimestamp(),
    'isInitialized': _isInitialized,
    'hasPrefs': _prefs != null,
  };
}