TracingConfiguration.fromJson constructor
Creates from JSON.
Implementation
factory TracingConfiguration.fromJson(Map<String, dynamic> json) {
return TracingConfiguration(
groupId: json['group_id'] as String?,
metadata: json['metadata'] != null
? Map<String, dynamic>.from(json['metadata'] as Map)
: null,
workflowName: json['workflow_name'] as String?,
);
}