We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
In swift, nullable properties have a default value of nil. However, in Kotlin they need explicit initialization.
nil
Example:
This Swift:
class PaymentSelectorPresenter { private var selectedPaymentMethod: PaymentMethod? }
Translates to:
But should be:
class PaymentSelectorPresenter { private var selectedPaymentMethod: PaymentMethod? = null }
The text was updated successfully, but these errors were encountered:
#23 Fixed optionals to add null initializer
80fcbaa
Fixed on 80fcbaa
Sorry, something went wrong.
No branches or pull requests
In swift, nullable properties have a default value of
nil
. However, in Kotlin they need explicit initialization.Example:
This Swift:
Translates to:
But should be:
The text was updated successfully, but these errors were encountered: