provider property
Implementation
static Provider<UserNotificationsService> provider =
Provider<UserNotificationsService>((ref) {
final userService = UserNotificationsService(
ref.watch(UserNotificationsDataService.provider));
return userService;
});