hasSeen method
Returns whether tourId has been marked as seen.
Implementation
@override
Future<bool> hasSeen(String tourId) async {
_validate(tourId);
final preferences = await SharedPreferences.getInstance();
return preferences.getBool('$_prefix$tourId') ?? false;
}