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