DevToolsUrl.fromJson constructor
DevToolsUrl.fromJson(
- List jsonList
Implementation
factory DevToolsUrl.fromJson(List<dynamic> jsonList) {
final json = listToMap(jsonList, type: type);
return DevToolsUrl(tabId: json['tabId'] as int, url: json['url'] as String);
}