DevToolsOpener.fromJson constructor

DevToolsOpener.fromJson(
  1. List jsonList
)

Implementation

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