Skip to content

Instantly share code, notes, and snippets.

@abdulhafizramadan-ittp
Last active May 30, 2022 16:24
Show Gist options
  • Select an option

  • Save abdulhafizramadan-ittp/d2d2d763f24a87d1aaafb8c63bd291a6 to your computer and use it in GitHub Desktop.

Select an option

Save abdulhafizramadan-ittp/d2d2d763f24a87d1aaafb8c63bd291a6 to your computer and use it in GitHub Desktop.
Android | Result Wrapper
package com.ahr.newsapp.data
sealed class Result<out R> private constructor() {
data class Success<out T>(val data: T) : Result<T>()
data class Error(val error: String) : Result<Nothing>()
object Loading : Result<Nothing>()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment