saveInstallId method
Saves the install ID
installId: The install ID to save- Returns: True if successful, false otherwise
Implementation
@override
Future<bool> saveInstallId(String installId) async {
try {
return await _prefs.setString(StorageKeys.installId, installId);
} catch (e) {
LinkFortyLogger.log('Failed to save install ID: $e');
return false;
}
}