setExecutionTraceAttribute static method

  1. @Deprecated('Please migrate to the App Flows APIs: APM.startAppFlow, APM.endFlow, and APM.setFlowAttribute. This feature was deprecated in v13.0.0')
Future<void> setExecutionTraceAttribute(
  1. String id,
  2. String key,
  3. String value
)

Sets attribute of an execution trace. String id of the trace. String key of attribute. String value of attribute.

Please migrate to the App Flows APIs: startFlow, setFlowAttribute, and endFlow.

Implementation

@Deprecated(
  'Please migrate to the App Flows APIs: APM.startAppFlow, APM.endFlow, and APM.setFlowAttribute. This feature was deprecated in v13.0.0',
)
static Future<void> setExecutionTraceAttribute(
  String id,
  String key,
  String value,
) async {
  return _host.setExecutionTraceAttribute(id, key, value);
}