shutdown method

  1. @override
Future<void> shutdown()
override

Shuts down the exporter.

This method is called when the SDK is shut down. Implementations should release any resources they hold. After shutdown, subsequent Export calls should return Failure.

Implementation

@override
Future<void> shutdown() async {
  _isShutdown = true;
}