removeAttribution method
Removes the persisted active attribution context.
Implementation
@override
Future<bool> removeAttribution() async {
try {
return await _prefs.remove(StorageKeys.attribution);
} catch (e) {
LinkFortyLogger.log('Failed to remove attribution: $e');
return false;
}
}