shutdown method

int shutdown()

Implementation

int shutdown() {
  final shutdownPtr = _otelShutdownPtr;
  if (shutdownPtr != null) {
    shutdownPtr.asFunction<void Function()>()();
  }
  _initialized = false;
  return 1;
}