我正在尝试将@ParcelizeKotlin 1.1.4 添加的新注释与包含 RealmList 属性的 Realm 对象一起使用。
@Parcelize
@RealmClass
open class Garage(
var name: String? = null,
var cars: RealmList<Car> = RealmList()
) : Parcelable, RealmModel
Run Code Online (Sandbox Code Playgroud)
由于RealmList注释不支持,并假设@Parcelize有专门避免创建方法的解决方案是RealmList什么?
提前致谢