AttributeModifiedEvent.fromJson constructor

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

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,
  );
}