mirror of
https://github.com/rrousselGit/riverpod.git
synced 2025-08-15 10:11:27 +08:00
8 lines
165 B
Dart
8 lines
165 B
Dart
import 'package:riverpod/riverpod.dart';
|
|
|
|
/* SNIPPET START */
|
|
final synchronousExampleProvider = Provider.autoDispose<int>((ref) {
|
|
return 0;
|
|
});
|
|
/* SNIPPET END */
|