Given ``` searchResults = intent?.extras?.getSeria...
# getting-started
m
Given
Copy code
searchResults = intent?.extras?.getSerializable(CAR_SEARCH_RESULTS_EXTRA) as ArrayList<GetWishResponse>

populateResultsList(searchResults)
setupCircularProgressBars(searchResults)
it is first important to notice that the first line will throw a
ClassCastException
if the return of
getSerializable
is
null
, since
ArrayList<GetWishResponse>
is not nullable