``` editText?.text = arguments?.getString(ARG_NEW_...
# android
r
Copy code
editText?.text = arguments?.getString(ARG_NEW_EMAIL).orEmpty()
editText?.setText(arguments?.getString(ARG_NEW_EMAIL))
This compiles for me.