FailedNetworkWithExceptionEvent constructor

FailedNetworkWithExceptionEvent({
  1. required String exceptionMessage,
  2. required String exceptionStackTrace,
  3. required String exceptionType,
  4. required int duration,
  5. required int startTime,
  6. required String httpRequestMethod,
  7. required String spanId,
  8. required String traceId,
  9. required String urlFull,
  10. required String networkProtocolName,
  11. String? responseReasonPhrase,
})

Constructor for failed event with exception

Implementation

FailedNetworkWithExceptionEvent({
  required this.exceptionMessage,
  required this.exceptionStackTrace,
  required this.exceptionType,
  required super.duration,
  required super.startTime,
  required super.httpRequestMethod,
  required super.spanId,
  required super.traceId,
  required super.urlFull,
  required super.networkProtocolName,
  this.responseReasonPhrase,
});