getTraceId method

String getTraceId(
  1. Map<String, dynamic> context
)

Returns context from Azure Function context. This method can be overloaded in child classes

  • context - Azure Function context Returns context from context

Implementation

String getTraceId(Map<String, dynamic> context) {
  return AzureFunctionContextHelper.getTraceId(context);
}