Skip to content

Instantly share code, notes, and snippets.

View abbondanza's full-sized avatar

Rafael abbondanza

View GitHub Profile
@abbondanza
abbondanza / main.dart
Last active November 19, 2021 18:10
Async Dart
void main() async {
final delayed3 = Future.delayed(
const Duration(seconds: 3),
() => '3',
);
final delayed2 = Future.delayed(
const Duration(seconds: 2),