import 'package:riverpod_annotation/riverpod_annotation.dart'; import 'hashtag_service.dart'; part 'cache_clear_service.g.dart'; @riverpod bool cacheClearService(CacheClearServiceRef ref) { ref.read(hashtagServiceProvider().notifier).clear(); return true; }