kopia lustrzana https://gitlab.com/mysocialportal/relatica
12 wiersze
265 B
Dart
12 wiersze
265 B
Dart
![]() |
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;
|
||
|
}
|