Recent problems encountered in learning Flutter request data, briefly note
When solving this problem, search a bunch of blogs on the Internet, some are useful, some are plagiarized, seeAn article on burning fish balls, analyzed the problem, very well, note.
To solve this problem, remember two key points:
-
In Dart, functions labeled with await return values of type Future.
-
To call async labelled functions, we must await them, and await must be used inside async.
Feel very abstract appearance, for example:
An example from a burning fish ball
So it’s very clear what the above two points mean.
Make a quick note