FallbackScreen constructor
const
FallbackScreen({
- Key? key,
- String title = 'Something went wrong',
- String subtitle = 'An unexpected error occurred.',
- ErrorFingerprint? fingerprint,
- AppSnapshot? lastSnapshot,
- required VoidCallback onRestart,
- required VoidCallback onStartFresh,
- bool isInCrashLoop = false,
Implementation
const FallbackScreen({
super.key,
this.title = 'Something went wrong',
this.subtitle = 'An unexpected error occurred.',
this.fingerprint,
this.lastSnapshot,
required this.onRestart,
required this.onStartFresh,
this.isInCrashLoop = false,
});