Ole, Kevin, Yes, but on the 2nd line I'm explicitl...
# getting-started
a
Ole, Kevin, Yes, but on the 2nd line I'm explicitly specifying the type to be
String
and not
String?
or letting it be inferred which would probably be
String?
i
You're calling
String?.toString()
, which transforms
String?
(nullable) to
String
(not nullable)