ExceptionInfoResponseBody.fromMap constructor

ExceptionInfoResponseBody.fromMap(
  1. Map<String, Object?> obj
)

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;