toJson method
Implementation
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['description'] = description;
map['devtoolsFrontendUrl'] = devtoolsFrontendUrl;
map['id'] = id;
map['title'] = title;
map['type'] = type;
map['url'] = url;
map['webSocketDebuggerUrl'] = webSocketDebuggerUrl;
return map;
}