right, so `movie` is a nullable reference to a `Mo...
# getting-started
s
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