avatarStorageService function

  1. @Riverpod.new(keepAlive: true)
AvatarStorageService avatarStorageService(
  1. Ref ref
)

Provider for AvatarStorageService instance.

Implementation

@Riverpod(keepAlive: true)
AvatarStorageService avatarStorageService(Ref ref) {
  return ref.watch(engineClientProvider).avatar;
}