Phil Bayfield
08/17/2024, 4:37 PMPagingSourcePhil Bayfield
08/17/2024, 4:59 PMPagingSourceinit {
        CoroutineScope(Dispatchers.IO).launch {
            dao.getCountAsFlow()
                .drop(1)
                .collect {
                    invalidate()
                    cancel()
                }
        }
    }