requestCatching

inline suspend fun <R : Any> requestCatching(block: () -> HttpResponse): ApiResult<R>

Takes in a block lambda that returns an HttpResponse from Ktor Internally, tries to convert the response into a response body defined by the generic R If success (2XX response), return ApiResult.Success If error (3XX - 5XX response), try to figure out error type and return ApiResult.Failure