DevToolsOpener.fromJson constructor
DevToolsOpener.fromJson(
- List jsonList
Implementation
factory DevToolsOpener.fromJson(List<dynamic> jsonList) {
final json = listToMap(jsonList, type: type);
return DevToolsOpener(newWindow: json['newWindow'] as bool);
}