mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-01-06 01:20:29 +05:30
10 lines
273 B
Kotlin
10 lines
273 B
Kotlin
|
package com.github.libretube.extensions
|
||
|
|
||
|
import android.os.Bundle
|
||
|
import android.os.Parcelable
|
||
|
import androidx.core.os.BundleCompat
|
||
|
|
||
|
inline fun <reified T : Parcelable> Bundle.parcelable(key: String?): T? {
|
||
|
return BundleCompat.getParcelable(this, key, T::class.java)
|
||
|
}
|