getLevel

Get a level by id

This function returns a concrete level by the Id passed in the parameters.

suspend fun getLevel(
    id: String,
    token: String
): ResponseHolder<ApiLevelResultView?> {
    return LevelRequests(baseUrl, activity).getLevel(id = id, schemeId = schemeId, token = token)
}