setHasLaunched method
Marks that the app has launched (no longer first launch)
- Returns: True if successful, false otherwise
Implementation
@override
Future<bool> setHasLaunched() async {
try {
return await _prefs.setBool(StorageKeys.firstLaunch, true);
} catch (e) {
LinkFortyLogger.log('Failed to set has launched: $e');
return false;
}
}