uninstall method

  1. @override
void uninstall()
override

Tear down the hook (test isolation).

Implementation

@override
void uninstall() {
  if (!_installed) return;
  debugPrint = _previous;
  _installed = false;
}