shutdown method

Future<void> shutdown()

Implementation

Future<void> shutdown() async {
  status = AppStatus.shuttingDown;
  print('🛑 Shutting down...');
  // Perform cleanup if needed
}