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