setTraceID method

FutureOr<void> setTraceID(
  1. String traceID
)

Implementation

FutureOr<void> setTraceID(String traceID) async {
  if (Platform.isAndroid) {
    // todo set trace ID
  } else if (Platform.isIOS) {
    setServerParameter(traceID);
  }
}