StartupCrashWatchdog constructor
StartupCrashWatchdog({
- WatchdogStorage? storage,
- int maxCrashThreshold = 2,
- Duration healthyThresholdDuration = const Duration(seconds: 5),
- void onRollbackTriggered()?,
Creates a StartupCrashWatchdog.
Implementation
StartupCrashWatchdog({
WatchdogStorage? storage,
this.maxCrashThreshold = 2,
this.healthyThresholdDuration = const Duration(seconds: 5),
this.onRollbackTriggered,
}) : storage = storage ?? InMemoryWatchdogStorage();