|
UserEntry
UserEntry Class
class UserEntry{var key:Object, var value:Object, var isSecret:Boolean = false;}Parameterskey : the key of the ServerEntry that will be created, if such a key exists it will be overwritten. value : the value of the ServerEntry that will be created, if null it will delete an existing key. isSecret : will the data in the ServerEntry be secret. CreationTo create a UserEntry instance you must use it's create function and not a constructor: UserEntry.create(key,value, isSecret); |
► Sign in to add a comment