IsolatedElementHighlightConfig.fromJson constructor
Implementation
factory IsolatedElementHighlightConfig.fromJson(Map<String, dynamic> json) {
return IsolatedElementHighlightConfig(
isolationModeHighlightConfig: IsolationModeHighlightConfig.fromJson(
json['isolationModeHighlightConfig'] as Map<String, dynamic>),
nodeId: dom.NodeId.fromJson(json['nodeId'] as int),
);
}