Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created August 1, 2022 05:36
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 skydoves/7407de48cce0bb5718c45079904773fe to your computer and use it in GitHub Desktop.
Save skydoves/7407de48cce0bb5718c45079904773fe to your computer and use it in GitHub Desktop.
message_ui_state
sealed interface WhatsAppMessageUiState {
data class Success(val channel: Channel) : WhatsAppMessageUiState
object Loading : WhatsAppMessageUiState
object Error : WhatsAppMessageUiState
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment