flutter sharedpreferences as provider code example
Example: flutter sharedpreferences
@override
void initState() {
super.initState();
asyncMethod();
}
void asyncMethod() async {
await asyncCall1();
await asyncCall2();
// ....
}