CodeGenEdge.fromJson constructor
Implementation
factory CodeGenEdge.fromJson(Map<String, dynamic> json) {
return CodeGenEdge(
source: json['Source'] as String,
target: json['Target'] as String,
targetParameter: json['TargetParameter'] as String?,
);
}