profileProvider top-level property
final
Implementation
final profileProvider = Provider<AsyncValue<Profile>>(
(ref) {
final dealer = ref.watch(meApiProvider);
final user = ref.watch(currentUserProvider);
return dealer.mergeWith(user, dtoToProfile);
},
);