AdScriptIdentifier.fromJson constructor
Implementation
factory AdScriptIdentifier.fromJson(Map<String, dynamic> json) {
return AdScriptIdentifier(
scriptId: runtime.ScriptId.fromJson(json['scriptId'] as String),
debuggerId: runtime.UniqueDebuggerId.fromJson(
json['debuggerId'] as String,
),
name: json['name'] as String,
);
}