CDPJSONPayload.fromJson constructor

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

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