DataResponse

abstract class DataResponse

Abstract class that provides a method for safely making API calls.

This class contains a method to handle API requests and return results wrapped in a NetworkResult. It handles both successful responses and errors.

Inheritors

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
suspend fun <T> safeApiCall(apiRequest: suspend () -> Response<T>): NetworkResult<T>

Safely makes an API call and returns the result.