Join Slack
Powered by
right, so `movie` is a nullable reference to a `Mo...
# getting-started
s
Shawn
06/30/2018, 4:50 AM
right, so
movie
is a nullable reference to a
Movie
, so you’ll need to either use safe navigation, i.e.
movie?.id
and optionally provide a default using
?:
, or maybe smart-casting the movie instance or something
Open in Slack
Previous
Next