AdScriptId.fromJson constructor

AdScriptId.fromJson(
  1. Map<String, dynamic> json
)

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),
  );
}