Flutter - Is there a way to load async metho on InitState? i want to call async method in iniState(); but it is not worked...
I'm a looking for a way to load async data on InitState method, I need some data before build method runs. I need to execute build method 'till a Stream runs.
@override
void initState () {
super.initState();
//here i want to call async function
}