Created
June 26, 2022 18:42
-
-
Save ulisseshen/2f943ac25f9293e4c7df8635c27f795c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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