AttributeRemovedEvent.fromJson constructor

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

Implementation

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