close static method

Future<void> close()

Closes the storage service

Implementation

static Future<void> close() async {
  try {
    stopRetryTimer();
    log('EventStorageService closed correctly');
  } catch (e) {
    log('Error closing EventStorageService: $e');
  }
}