closeGlobalZone function

void closeGlobalZone()

Closes the global zone manager.

Call this when the application exits or when you want to clean up.

Implementation

void closeGlobalZone() {
  _globalZone?.close();
  _globalZone = null;
}