PseudoElementRemovedEvent.fromJson constructor

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

Implementation

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