StackTraceId.fromJson constructor
Implementation
factory StackTraceId.fromJson(Map<String, dynamic> json) {
return StackTraceId(
id: json['id'] as String,
debuggerId: json.containsKey('debuggerId')
? UniqueDebuggerId.fromJson(json['debuggerId'] as String)
: null,
);
}