create
fun create(type: String, vararg properties: Pair<String, Any?>): DynamicMutableRealmObject
Content copied to clipboard
fun create(type: String, properties: Map<String, Any?> = emptyMap()): DynamicMutableRealmObject
Content copied to clipboard
Create an unmanaged dynamic object.
The type and properties are only checked when the object is imported through DynamicMutableRealm.copyToRealm or DynamicMutableRealm.insert.
See also
Parameters
type
the class name of the object.
properties
properties of the object.