Aaron Waller
05/12/2022, 6:14 PMTim Oltjenbruns
05/12/2022, 6:16 PMnull
or is it "null"
?Aaron Waller
05/12/2022, 6:30 PMreturn UserState(
username = responseUser.username,
profileImageUrl = auth.currentUser?.photoUrl.toString(),
isLoggedIn = true,
coins = 10
)
Aaron Waller
05/12/2022, 6:31 PMTim Oltjenbruns
05/12/2022, 6:35 PMauth.currentUser?.photoUrl.toString()
-> auth.currentUser?.photoUrl?.toString()
Tim Oltjenbruns
05/12/2022, 6:35 PMAny?
which converts null to “null”Tim Oltjenbruns
05/12/2022, 6:35 PMAaron Waller
05/12/2022, 6:38 PM