reset static method
Resets static awareness of the Simulator and Test to a safe initial state.
This includes a call to Simulator.reset and clearing the instance
reference to null
.
This is important, for example, if you're running a variety of tests in unit test suite.
Implementation
static Future<void> reset() async {
await Simulator.reset();
_instance = null;
}