Created
February 26, 2022 11:31
-
-
Save Azooz2014/154a0d2983c881c3846f178dffb6a5c6 to your computer and use it in GitHub Desktop.
Generic wrapper class for handling states when retriving data from API or local databases.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sealed class Resource<T>(val data: T? = null, val message: String? = null){ | |
class Success<T>(data: T) : Resource<T>(data) | |
class Loading<T>(data: T? = null) : Resource<T>(data) | |
class Error<T>(data: T? = null, message: String) : Resource<T> (data, message) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment