docs: fix KDoc by adding missing param descriptions to startActivityWithFlags

This commit is contained in:
Rsedp8 2025-05-24 18:33:51 +02:00
parent e122ec5ecd
commit 55fa3d978d

View file

@ -93,10 +93,11 @@ class QuizResultActivity : AppCompatActivity() {
} }
/** /**
* Function to call intent to an activity * Starts an activity using the provided context, target class, and intent flags.
* @param context *
* @param cls * @param context The context used to start the activity.
* @param flags * @param cls The target activity class.
* @param flags A variable number of intent flags to apply to the Intent.
*/ */
companion object { companion object {
fun <T> startActivityWithFlags(context: Context, cls: Class<T>, vararg flags: Int) { fun <T> startActivityWithFlags(context: Context, cls: Class<T>, vararg flags: Int) {