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