profileRepository function
- @Riverpod.new(keepAlive: true)
- Ref ref
Provider for ProfileRepository instance.
Implementation
@Riverpod(keepAlive: true)
ProfileRepository profileRepository(Ref ref) {
return ref.watch(engineClientProvider).profile;
}
Provider for ProfileRepository instance.
@Riverpod(keepAlive: true)
ProfileRepository profileRepository(Ref ref) {
return ref.watch(engineClientProvider).profile;
}