provider property

Provider<UserNotificationsService> provider
getter/setter pair

Implementation

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