mirror of
https://github.com/rrousselGit/riverpod.git
synced 2025-08-15 10:11:27 +08:00
11 lines
184 B
Dart
11 lines
184 B
Dart
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
|
|
part 'codegen.g.dart';
|
|
|
|
/* SNIPPET START */
|
|
@riverpod
|
|
int synchronousExample(Ref ref) {
|
|
return 0;
|
|
}
|
|
/* SNIPPET END */
|