Skip to content

Instantly share code, notes, and snippets.

@viveky259259
Created September 30, 2019 12:20
Show Gist options
  • Save viveky259259/650505ab9baa58f0c66d839dd5d250a1 to your computer and use it in GitHub Desktop.
Save viveky259259/650505ab9baa58f0c66d839dd5d250a1 to your computer and use it in GitHub Desktop.
State Class
class NoteState {}
///list of States
///1.Fetching 2.FetchingComplete 3. EmptyState 4. InitialState
class FetchingNoteState extends NoteState {}
class FetchingNoteCompleteState extends NoteState {}
class EmptyNoteState extends NoteState {}
class InitialNoteState extends NoteState {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment