Answers for "contains illegal final/immutable field "id""

1

contains illegal final/immutable field "id"

import io.realm.Realm
import io.realm.RealmModel
import io.realm.annotations.PrimaryKey
import io.realm.annotations.RealmClass

@RealmClass
open class Example(
    @PrimaryKey open var Id : Long = 0,
    open var Field : String = ""
) : RealmModel
Posted by: Guest on April-08-2022

Code answers related to "contains illegal final/immutable field "id""

Browse Popular Code Answers by Language