Skip to content

Instantly share code, notes, and snippets.

@lordcodes
Created March 1, 2020 20:07
Show Gist options
  • Save lordcodes/9a00d91213357b25d27c1300b02dc598 to your computer and use it in GitHub Desktop.
Save lordcodes/9a00d91213357b25d27c1300b02dc598 to your computer and use it in GitHub Desktop.
Code for the article: "The power of lazy properties in Kotlin"
class OrderDetailActivity : FragmentActivity() {
val orderId by lazy {
intent.getParcelableExtra<OrderId>(EXTRA_ORDER_ID)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment