Skip to content

Instantly share code, notes, and snippets.

@5AbhishekSaxena
Last active April 19, 2022 19:08
Show Gist options
  • Select an option

  • Save 5AbhishekSaxena/0a1e18dfa61af3bdded939187f27a43e to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown
Author

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