RecoveryState constructor

const RecoveryState({
  1. required Object error,
  2. required StackTrace stackTrace,
  3. required ErrorFingerprint fingerprint,
  4. required ErrorSeverity severity,
  5. AppSnapshot? lastSnapshot,
  6. bool isInCrashLoop = false,
})

Implementation

const RecoveryState({
  required this.error,
  required this.stackTrace,
  required this.fingerprint,
  required this.severity,
  this.lastSnapshot,
  this.isInCrashLoop = false,
});