Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Created January 25, 2021 20:45
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 marcossevilla/b1af5bac49eff82e23be965ff37d7b72 to your computer and use it in GitHub Desktop.
Save marcossevilla/b1af5bac49eff82e23be965ff37d7b72 to your computer and use it in GitHub Desktop.
const state = CommonState(42);
state.maybeWhen(
null,
loading: () => 'loading',
error: (error) => '$error',
orElse: () => 'fallback',
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment