CDPJSONPayload.fromJson constructor
Implementation
factory CDPJSONPayload.fromJson(Map<String, dynamic> json) {
return CDPJSONPayload(
description: json['description'],
devtoolsFrontendUrl: json['devtoolsFrontendUrl'],
id: json['id'],
title: json['title'],
type: json['type'],
url: json['url'],
webSocketDebuggerUrl: json['webSocketDebuggerUrl'],
);
}