fromJson static method
Implementation
static EdgeConnectionsModel fromJson(Map<String, dynamic> json) {
return EdgeConnectionsModel(
source: NodeSocketModel.fromJson(json["source"]),
target: NodeSocketModel.fromJson(json["target"]),
);
}