PseudoElementRemovedEvent.fromJson constructor
Implementation
factory PseudoElementRemovedEvent.fromJson(Map<String, dynamic> json) {
return PseudoElementRemovedEvent(
parentId: NodeId.fromJson(json['parentId'] as int),
pseudoElementId: NodeId.fromJson(json['pseudoElementId'] as int),
);
}