Files
2025-04-20 17:58:08 +02:00

8 lines
165 B
Dart

import 'package:riverpod/riverpod.dart';
/* SNIPPET START */
final synchronousExampleProvider = Provider.autoDispose<int>((ref) {
return 0;
});
/* SNIPPET END */