accountRepository function
- @Riverpod.new(keepAlive: true)
- Ref ref
Provider for the signed-in account's repository.
Implementation
@Riverpod(keepAlive: true)
AccountRepository accountRepository(Ref ref) {
return ref.watch(engineClientProvider).account;
}