accountRepository function

  1. @Riverpod.new(keepAlive: true)
AccountRepository accountRepository(
  1. Ref ref
)

Provider for the signed-in account's repository.

Implementation

@Riverpod(keepAlive: true)
AccountRepository accountRepository(Ref ref) {
  return ref.watch(engineClientProvider).account;
}