Skip to content

Instantly share code, notes, and snippets.

@enzoz
Last active March 17, 2021 13:33
Show Gist options
  • Select an option

  • Save enzoz/df02742b6c48a19ab96fd58e2a58bd01 to your computer and use it in GitHub Desktop.

Select an option

Save enzoz/df02742b6c48a19ab96fd58e2a58bd01 to your computer and use it in GitHub Desktop.
void main() {
Future<String> Function() first = () => Future.value('funciona');
Future<void> Function() quebra = () => Future.error('Quebrou');
first()
.then((_) => quebra().catchError((e) => print(e.toString())))
.catchError((_) => print('Não pode entrar aqui'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment