# getUsers
suspend fun getUsers(): List<User>
Get the registered users.
# Return
a list of users.
fun getUsers(resultHandler: ResultHandler<List<User>, UserStorageException>)
Get the registered users.
# Parameters
resultHandler | a callback to handle the result of the user retrieval. - If successful, the result is MIRACLSuccess with a list of users. - If an error occurs, the result is MIRACLError with a UserStorageException. |