juliocbcotta
08/08/2018, 3:06 AMparcel.readString()
returns a String?
.. but my data class uses String
.. should I just place !!
to get rid of the warning?gildor
08/08/2018, 3:10 AM!!
if there is any valid onesMark Gilchrist
08/08/2018, 4:12 AMfoo?.let{ bar = it}
instead of !!
unless you really want it to crashgildor
08/08/2018, 5:18 AM