Colton Idle
val pokemonInfo: StateFlow<PokemonInfo?> = pokemon.filterNotNull().flatMapLatest { pokemon -> detailsRepository.fetchPokemonInfo( .. ) }.stateIn( scope = viewModelScope, started = SharingStarted.WhileSubscribed(5_000), initialValue = null, )
streetsofboston
A modern programming language that makes developers happier.