String longMehtod() async{
await longProcess()
return ok;
}
Future<String> a = longMehtod()
//add some code to block the process to wait Future complete and I can get the value of a
Can I block the process and make sure the value must be print without use await/async?
or is there any method like blockingget in Rxjava?