saveInstallData method
Saves the deep link data from attribution
data: The deep link data to save- Returns: True if successful, false otherwise
Implementation
@override
Future<bool> saveInstallData(DeepLinkData data) async {
try {
final json = jsonEncode(data.toJson());
return await _prefs.setString(StorageKeys.installData, json);
} catch (e) {
LinkFortyLogger.log('Failed to encode install data: $e');
return false;
}
}