accountDisplayNameProvider top-level property
final
Caching the name of each Room
Implementation
final accountDisplayNameProvider =
FutureProvider.autoDispose<String?>((ref) async {
final account = await ref.watch(accountProvider.future);
return (await account.displayName()).text();
});