DevToolsUrl.fromJson constructor

DevToolsUrl.fromJson(
  1. 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);
}