inline fun <reified T : Activity> Fragment.startActivity(block: Intent.() -> Unit = {}): Unit
Starts a new activity by creating a new Intent, calling block with the new instance, then passing the intent to Context.startActivity.
Does nothing if the fragment isn't attached to an activity.