profileRepository function

  1. @Riverpod.new(keepAlive: true)
ProfileRepository profileRepository(
  1. Ref ref
)

Provider for ProfileRepository instance.

Implementation

@Riverpod(keepAlive: true)
ProfileRepository profileRepository(Ref ref) {
  return ref.watch(engineClientProvider).profile;
}