getTraceId method
Gets the trace ID for a given span ID.
Implementation
@override
Future<String?> getTraceId(String spanId) async {
throwIfNotStarted();
return methodChannel.invokeMethod<String>(_getTraceIdMethodName, {
_spanIdArgName: spanId,
});
}