What if I have
_asyncMethod();
print("Hi");
The method is executed before print but the method stops at its first await and then print is reached?
OR
The method is NOT executed, the print is reached and then the method is executed, like it was called with a Future.delayed with Duration(seconds:0) call?