Skip to content

Instantly share code, notes, and snippets.

@ulisseshen
Created June 26, 2022 18:42
Show Gist options
  • Save ulisseshen/2f943ac25f9293e4c7df8635c27f795c to your computer and use it in GitHub Desktop.
Save ulisseshen/2f943ac25f9293e4c7df8635c27f795c to your computer and use it in GitHub Desktop.
class _MyAppState extends State<MyApp> {
late Future<Album> futureAlbum;
@override
void initState() {
super.initState();
futureAlbum = fetchAlbum();
}
// ···
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment