LogContentResponse constructor

LogContentResponse({
  1. required String summary,
  2. required String requestBody,
  3. required String responseBody,
  4. LogException? exception,
})

Implementation

LogContentResponse({
  required this.summary,
  required this.requestBody,
  required this.responseBody,
  this.exception,
});