RumError constructor

RumError({
  1. required List<RumErrorCause>? causes,
  2. RumErrorHandling? handling,
  3. String? handlingStack,
  4. String? id,
  5. bool? isCrash,
  6. required String message,
  7. RumResourceSummary? resource,
  8. required RumInternalErrorSource source,
  9. String? sourceType,
  10. String? stack,
  11. String? type,
  12. String? fingerprint,
})

Implementation

RumError({
  required this.causes,
  this.handling,
  this.handlingStack,
  this.id,
  this.isCrash,
  required this.message,
  this.resource,
  required this.source,
  this.sourceType,
  this.stack,
  this.type,
  this.fingerprint,
});