IsolatedElementHighlightConfig.fromJson constructor

IsolatedElementHighlightConfig.fromJson(
  1. Map<String, dynamic> json
)

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),
  );
}