removeAttribution method

  1. @override
Future<bool> removeAttribution()
override

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;
  }
}