ExceptionInfoResponseBody.fromMap constructor
Implementation
ExceptionInfoResponseBody.fromMap(Map<String, Object?> obj)
: breakMode = obj['breakMode'] as ExceptionBreakMode,
description = obj['description'] as String?,
details = obj['details'] == null
? null
: ExceptionDetails.fromJson(obj['details'] as Map<String, Object?>),
exceptionId = obj['exceptionId'] as String;