CodeGenEdge.fromJson constructor

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

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