Skip to content

Instantly share code, notes, and snippets.

@5AbhishekSaxena
Last active April 19, 2022 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 5AbhishekSaxena/0a1e18dfa61af3bdded939187f27a43e to your computer and use it in GitHub Desktop.
Save 5AbhishekSaxena/0a1e18dfa61af3bdded939187f27a43e to your computer and use it in GitHub Desktop.
UiImage using Sealed Classes
sealed class UiImage {
data class LocalImage(val imageRes: Int) : UiImage()
data class RemoteImage(val imageUrl: String) : UiImage()
}
@5AbhishekSaxena
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment