Exports a batch of finished Spans.
@override Future<void> export(List<Span> spans) async { if (_isShutdown) { throw StateError('InMemorySpanExporter is shutdown'); } _spans.addAll(spans); }