ExceptionInfoResponseBody constructor

ExceptionInfoResponseBody({
  1. required ExceptionBreakMode breakMode,
  2. String? description,
  3. ExceptionDetails? details,
  4. required String exceptionId,
})

Implementation

ExceptionInfoResponseBody({
  required this.breakMode,
  this.description,
  this.details,
  required this.exceptionId,
});