AuthScimInternalFailure constructor

const AuthScimInternalFailure({
  1. required String operation,
  2. required Object error,
  3. required StackTrace stackTrace,
  4. String? tenantId,
  5. String? organizationId,
  6. String? subjectId,
})

Creates sanitized diagnostic data for an internal reporter.

Implementation

const AuthScimInternalFailure({
  required this.operation,
  required this.error,
  required this.stackTrace,
  this.tenantId,
  this.organizationId,
  this.subjectId,
});